我有一个邮件类,其中的build()
具有下面的代码,用于从系统用户向系统另一用户发送和发送电子邮件。它的工作原理,但两个用户都有Gmail电子邮件。
但是我不知道它是否可以与其他域一起使用,您知道是否可以与其他域一起使用,或者它仅适用于gmail到gmail电子邮件吗?如果在不同的域之间不起作用,您如何正确处理该上下文?
return $this
->from($this->user->email)
->to($this->post->creator->email)
->markdown('emails.Notification', [
'message' => $this->message,
'subject' => $this->subject
]);