Laravel Mail::send how to pass data to mail View

后端 未结 4 890
迷失自我
迷失自我 2020-12-31 21:15

How can i pass data from my Controller to my customized mail View ?

Here\'s my controller\'s send mail method :

4条回答
  •  礼貌的吻别
    2020-12-31 22:01

    for those using the simpleMail this might help :

      $message = (new MailMessage)
       ->subject(Lang::getFromJson('Verify Email Address'))
       ->line(Lang::getFromJson('Please click the button below to verify your email address.'))
       ->action(Lang::getFromJson('Verify Email Address'), $verificationUrl)
       ->line(Lang::getFromJson('If you did not create an account, no further action is required.'));
      $message->viewData['data'] = $data;
            return $message;
    

提交回复
热议问题