【发布时间】:2015-02-05 14:41:38
【问题描述】:
我刚刚开发了一个带有邮件系统的 laravel web 应用程序。 我遇到了类似
的错误Connection could not be established with host smtp.gmail.com [Connection timed out #110]
控制器
Mail::send('timesheet/emailtemplate',array('data'=>$query),function($message)
{
$message->to('example@gmail.com')->cc('expalecc@gmail.com')->subject('Work Report on - ');
});
电子邮件模板文件:emailtemplate.blade.php
<h2>hai</h2>
mail.php(配置)
'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 587,
'from' => array('address' => null, 'name' => null),
'encryption' => 'ssl',
'username' => 'myemail@example.com',
'password' => 'mypassword',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
【问题讨论】: