laravel 5.4 embed image in mail

前端 未结 6 1010
无人及你
无人及你 2020-12-17 10:21

I have just upgraded my 5.2 install of laravel to 5.3 and then to 5.4 following the official upgrading methods.

I am now tryin

6条回答
  •  抹茶落季
    2020-12-17 10:49

    You could try the following:

    class WelcomeCandidate extends Mailable
    {
        use Queueable, SerializesModels;
    
        public $message;
        public function __construct(User $user)
        {
            $this->user = $user;
            $this->message = (object) array('image' => '/path/to/file');
        }
    }
    

提交回复
热议问题