如何将正在发送的请求呈现给电子邮件驱动程序(例如SparkPost)? 我需要调试403问题,错误消息模糊。
MailController.php
Mail::send(new Generic($request));
Mail / Generic.php
public function build()
{
return $this->to('thanos@galaxy.net')
->from('starlord@galaxy.net')
->subject('You Were Wrong')
->markdown('emails.generic');
}