无法发送电子邮件将SwiftMailer与Mandrill一起投掷

时间:2015-02-10 20:20:03

标签: php swiftmailer mandrill

从今天开始,我的许多php应用程序无法使用SwiftMailer和不同的Mandrill帐户发送电子邮件。

我已经获得了这个代码,并且最后一个send函数停止了脚本..

// Instance message
$message = Swift_Message::newInstance();

$message->setSubject("subject")
        ->setFrom(array('noreply@email.test' => 'test'))
        ->setTo(array('a_valid_email' => 'name'))
        ->setBody("test", 'text/html')
        ->setPriority(2);

$smtp_host     = 'smtp.mandrillapp.com';
$smtp_port     = 587;
$smtp_username = 'valid_username';
$smtp_password = 'valid_password';

// SMTP
$smtp_param = Swift_SmtpTransport::newInstance($smtp_host , $smtp_port)
        ->setUsername($smtp_username)
        ->setPassword($smtp_password);

// Instance Swiftmailer
$instance_swiftmailer = Swift_Mailer::newInstance($smtp_param);

$type = $message->getHeaders()->get('Content-Type');
$type->setValue('text/html');
$type->setParameter('charset', 'iso-8859-1');

//Here the send function stop event and I did not go inside the if      
    if ($instance_swiftmailer->send($message, $fail)) {
        echo 'OK ';
    }else{
        echo 'NOT OK : ';
        print_r($fail);
    }

先谢谢你帮我解决这个问题..

1 个答案:

答案 0 :(得分:-1)

如果您的代码过去有效,现在无法运行,并且您没有更改代码,那么您的代码可能不会出现问题。检查您的Mandrill帐户有效期 - 有时他们会暂停帐户以查看可疑用途。