Laravel-邮件通知模板-自定义line()

时间:2019-01-12 23:47:21

标签: php laravel email notifications

我正在使用通知发送邮件,如下所示:

      return (new MailMessage)
            ->greeting('Hello ' . $notifiable->first_name . ',' )
            ->subject('Reset Password Notification')
            ->line('You are receiving this email because we received a password reset request for your account.')
            ->action('Reset Password',
                url(config('app.url').route('password.reset', $this->token, false))
            )
            ->line('If you did not request a password reset, please just ignore this message')
            ->salutation(config('mail.salutation'));

使用标准模板,一切都很好。

我现在已经发布了供应商文件,并开始编辑模板和CSS。为了使我的主题生效,当我创建新行时,需要用一些HTML代码将其包装。

->line('This is my new line')需要呈现为(简化):

<table>
<tr>
<td>
This is my new line
</td>
</tr>
</table>

对于更复杂的电子邮件,我正在使用模板从头开始创建它们,但是我真的很喜欢这些简单消息的通知,并希望有办法做到这一点?

0 个答案:

没有答案