How to add headers to email in Laravel 5.1

前端 未结 3 544
离开以前
离开以前 2021-02-13 00:41

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
         


        
3条回答
  •  别那么骄傲
    2021-02-13 01:00

    I know this is an old post, but I'm passing by the same problem right now and I think this could be useful to others.

    If you're using a structure exactly as shown in Laravel (6.x and 7.x), like this:

    /**
     * Build the message.
     *
     * @return $this
     */
    public function build()
    {
        return $this->from('example@example.com')
                    ->view('emails.orders.shipped');
    }
    

    you could add headers to the E-mail in the format below:

    public function build()
    {
       return $this->from('example@example.com')
                    ->view('emails.orders.shipped')
                    ->withSwiftMessage(function ($message) {
                        $message->getHeaders()
                            ->addTextHeader('Custom-Header', 'HeaderValue');
                    });
    }
    

    I hope this could be useful.

    link to the current documentation:https://laravel.com/docs/7.x/mail#customizing-the-swiftmailer-message

提交回复
热议问题