Is there a way to add default headers to all emails in Laravel 5.1? I want all emails to be sent with the following header:
x-mailgun-native-send: true
Is there a way to add default headers to all emails in Laravel 5.1? I want all emails to be sent with the following header:
x-mailgun-native-send: true
Laravel uses SwiftMailer for mail sending.
When you use Mail facade to send an email, you call send() method and define a callback:
Callback receives
$m
variable that is an\Illuminate\Mail\Message
object, that hasgetSwiftMessage()
method that returns\Swift_Message
object which you can use to set headers:Slight modification to @maxim-lanin's answer. You can use it like this, fluently.