0
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);
}

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

4

1 回答 1

1

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

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

if (!$mailer->send($message, $failures)) {
  echo "Failures:";
  print_r($failures);
} else {
    echo 'email sent successfully';
}
于 2013-05-09T11:57:25.443 回答