AH
$this->from('мыло');Мой кейс:
class SentOrderMail extends Mailable implements ShouldQueue
{
public function build()
{
$this->setSubject();
$this->setFrom();
$this->setTo();
$this->setReplyTo();
return $this->markdown('emails.sent-order');
}
protected function setFrom()
{
$this->from(
config('mail.from'),
$this->data->client->host
);
}
}