guysolamour/laravel-dkim
最新稳定版本:v1.0
Composer 安装命令:
composer require guysolamour/laravel-dkim
包简介
Laravel package for signing outgoing messages with DKIM.
README 文档
README
Installation
Install via composer
composer require guysolamour/laravel-dkim
After that, you should publish the config file with:
php artisan vendor:publish --provider="Guysolamour\Dkim\ServiceProvider"
The ServiceProvider extends the MailServiceProvider and overwrites a method that we need for our own behavior.
Next we need to create a private and public key pair for signing and verifying the email.
There are many tools available to generate the necessary keys but here is one which is easy to use:
https://tools.socketlabs.com/dkim/generator
Enter your domain and in the "selector" field enter default, or adjust the "selector" in the laravel config file accordingly. Leave the remaining fields as they are.
After you have generated the keys and added the public key to your dns record, here is a tool to validate it:
https://www.mail-tester.com/spf-dkim-check
Finally, store the private key for example in storage/app/dkim/dkim.private.key and configure your settings in .env:
You need to set the full absolute path in the environment variable.
DKIM_DOMAIN=example.com
Credits
统计信息
- 总下载量: 51
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-09