【发布时间】:2016-09-16 15:50:40
【问题描述】:
我正在尝试使用 godaddy 帐户在 laravel 中发送电子邮件,但我总是收到错误
AbstractSmtpTransport.php 第 383 行中的 Swift_TransportException: 预期响应代码 250,但得到代码“501”,消息“501 HELO 需要有效地址”
以下代码用于在控制器中发送电子邮件:
$title = 'Test email';
$content = 'Test email from shingora';
Mail::send('emails.send', ['title' => $title, 'content' => $content], function ($message) {
$message->from('robin.shingora@gmail.com', 'Shingora');
$message->subject('Test email');
$message->to('robin.shingora@gmail.com');
});
在mail.php中
return [
'driver' => 'smtp',
'host' => 'smtpout.asia.secureserver.net',
'port' => 25,
'from' => ['address' => 'example@gmail.com', 'name' => 'test'],
'encryption' => 'ssl',
'username' => 'example@gmail.com',
'password' => '********',
'sendmail' => 'D:\sendmail\sendmail -bs',
'pretend' => false,
];
【问题讨论】: