我正在使用流明(下面的Laravel 5.1)。
我有一个简单的代码
.
.
.
$this->info( 'sending email to: '. $user->full_name );
Mail::send( 'reminders.attendance', ['user' => $user, 'thisRelation' => $thisRelation ], function ( $m ) use
($user) {
$m->to( $user->email, $user->full_name)->subject('EduStatus Attendance Reminder');
});
我可以确认存在视图文件。当我将此代码放入routes.php
文件并简单地点击网址时,系统会触发电子邮件。
我正在尝试将其设为artisan command
但是当我在command file
中使用相同的代码时,它只是说
[ErrorException]
Undefined index: cipher
当我删除邮件行时,它可以正常工作。无论我打印到控制台的是什么。 有什么想法吗?
答案 0 :(得分:0)
这是我自己的一个愚蠢的错误。不知怎的,我编辑了app.php
中的config folder
,该文件没有cipher
密钥的值。