我正在通过 SwiftMailers 脚本连接到 Mandrill 的 SMTP,但我没有在 Mandrill 中看到我通过 Swift 发送的电子邮件的报告。为什么会这样?
这是我连接到 Mandrill 的代码(一切正常并按应有的方式发送邮件)
include_once "../swift_required.php";
$transport = Swift_SmtpTransport::newInstance('smtp.mandrillapp.com', 465, 'ssl');
$transport->setUsername('our@email.com');
$transport->setPassword('api-key-goes-here');
$swift = Swift_Mailer::newInstance($transport);