【发布时间】:2018-08-14 12:11:45
【问题描述】:
我已将以下内容添加到我的 App\User 模型中:
public function sendPasswordResetNotification($token)
{
$message = (new MailMessage)
->from(config('myapp.email'), config('myapp.title'))
->subject('Reset Password')
->view('emails.password_reset', compact('token'));
$this->notify($message);
}
这会导致以下错误:
Call to undefined method Illuminate\Notifications\Messages\MailMessage::via()
?
【问题讨论】:
标签: php laravel email notifications