Laravel 5: Signing e-mail with DKIM Laravel 5: Signing e-mail with DKIM laravel laravel

Laravel 5: Signing e-mail with DKIM


I wrote decorator of MailServiceProvider for Laravel 5 that provides ability to sign outgoing messages with DKIM:

https://github.com/vitalybaev/laravel5-dkim


You have to extend Laravel Mailer and mail service provider. Default laravel mailer using new Swift_Message class not Swift_SignedMessage thats why you don't have options for signing.

Here is a package for laravel 4.