Laravel 8 自定义发送者

2021-07-19 10:53 更新

默认情况下,电子邮件的发件人 / 发件人地址 定义在 config/mail.php 配置文件中。 但是,你可以使用 from 方法指定特定通知的发件人地址:

/**
 * Get the mail representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return \Illuminate\Notifications\Messages\MailMessage
 */
public function toMail($notifiable)
{
    return (new MailMessage)
                ->from('test@example.com', 'Example')
                ->line('...');
} 
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号