无法在godaddy托管上发送来自Laravel 4的邮件

时间:2015-07-23 19:00:36

标签: php email laravel-4 swiftmailer

我使用以下代码使用Laravel 4发送电子邮件。

Mail::send('emails.welcome', array('data' => 'This is a test content' ), function($message)
{
    $message->to('mymail@site.com', 'TomTom')->subject('Welcome to Laravel!');
});

每当我尝试发送电子邮件时,都会引发以下错误:

A connection could not be established with the host 
smtpout.asia.secureserver.net [Connection refused #111]

但是当我使用 php mail 函数发送电子邮件时,它运行正常!

var_dump(mail("mymail@site.com", "subject", "hello world"));

然后是什么问题?

0 个答案:

没有答案