Swiftmailer不在php发送邮件

时间:2013-05-09 11:44:34

标签: php swiftmailer

error_reporting(E_ALL);
require_once 'swift_required.php';

//Create the Transport
$transport = Swift_SmtpTransport::newInstance('mail.your_domain.com', 25)
->setUsername('name@your_domain.com')
->setPassword('your_password')
;

//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

//Create a message
$message = Swift_Message::newInstance('PHP Message')
->setFrom(array('name@your_domain.com'))
->setTo(array('name@your_domain.com'))
->setBody('PHP Swift Mailer sent with authentication')
;

//Send the message
$result = $mailer->send($message);



if (!$mailer->send($message, $failures)) {
echo "Failures:";
print_r($failures);
}

这是我用来发送电子邮件的代码。但它不能正常工作。甚至没有任何错误或失败消息。有什么问题?

1 个答案:

答案 0 :(得分:1)

如果SMTP服务器地址有效且可以使用提供的凭据访问,则您的代码似乎正常工作。您的SMTP服务器地址或登录凭据可能不正确或SMTP服务器未运行?代码使用有效设置正确运行。

此外,尝试在成功时添加消息,以便您知道代码已发送出电子邮件 - 否则您可能不会注意到,如果电子邮件在目的地进行垃圾邮件过滤,它实际上正在运行:

if (!$mailer->send($message, $failures)) {
  echo "Failures:";
  print_r($failures);
} else {
    echo 'email sent successfully';
}