【发布时间】:2015-11-19 21:13:34
【问题描述】:
我正在尝试发送一封电子邮件确认以进行注册。我创建了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 类的对象无法转换为字符串
【问题讨论】:
标签: php email laravel laravel-5.1