我正在尝试发送电子邮件确认以进行注册。我创建了app>Mailers>AppMailer
。
class AppMailer {
protected $mailer;
protected $from = 'admin@example.com';
protected $to;
protected $view;
protected $data = [];
public function __construct(Mailer $mailer)
{
$this->$mailer = $mailer; // Line 23
}
然而,我收到一个错误:
AppMailer.php第23行中的ErrorException:
类Illuminate \ Mail \ Mailer的对象无法转换为字符串
答案 0 :(得分:4)
设置$this->$mailer
,而不是$this->$mailer = $mailer;
// ^
。
所以不要这样:
$this->mailer = $mailer;
使用此:
CheckAccess