StreamBuffer.php第269行中的Swift_TransportException无法使用主机名称或未知的服务建立连接#0]

时间:2016-11-20 04:40:37

标签: php laravel-5

我是Laravel的新手,我在我的一个应用程序中使用Laravel 5.0,我正在尝试通过smtp在Larvel发送一封电子邮件但我每次都收到这个尴尬的错误,它也没有得到我的主机,无法粘贴标题中的整个错误,所以这里是

  

无法与主机建立连接[php_network_getaddresses:getaddrinfo失败:名称或服务没有   已知#0]

我的.env文件代码:

MAIL_DRIVER=smtp
MAIL_HOST=mail.brownrice.com
MAIL_PORT=587
MAIL_USERNAME=cannot show user due to security
MAIL_PASSWORD=cannot show pass due to security

我的app / mail.php

'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'from' => ['address' => 'reservations@rezosystems.com', 'name' => 'Rezosystems'],
'encryption' => 'tls',
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,

我在MailController中使用此邮件功能

Mail::send('EmailTemplates/test_email', ['msg' => 'Congratulations!!! Your first email template sent'], function($message)
    {
        $message->to('test@rezosystems.com', 'John Doe')->subject('Test!');
    });

0 个答案:

没有答案