我尝试使用Laravel发送电子邮件。我为mail.php
配置了gmail服务器的详细信息,并使用了我的个人Gmail帐户凭据。它运作良好。
然后我尝试使用我的邮件提供商为我提供的mail.php
设置配置Secure SSl/TLS
。
我改变了host, port, username and password
。我还将encryption
更改为ssl
。
但我无法发送电子邮件。在一些加载时间之后,它只显示一个空白页面。没有错误。
这是我的配置文件(删除了doc-blocks):
<?php
return array(
'driver' => 'smtp',
'host' => 'myServerHostAddress',
'port' => portno,
'from' => array('address' => 'registration@gambiadept.com', 'name' => 'Gambia Dept'),
'encryption' => 'ssl',
'username' => 'usernameFromMyServiceProvider',
'password' => 'myPassword',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
);