我使用以下代码使用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"));
然后是什么问题?