无法从laravel发送电子邮件?

时间:2014-09-25 13:18:49

标签: php email ssl laravel

我尝试使用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,    
);

0 个答案:

没有答案