SWIFTMailer Corp Cartment с динамическим содержанием (с помощью Mandrill)

StackOverflow https://stackoverflow.com//questions/25010766

Вопрос

Как я могу прикрепить динамический контент от Mandrill WebHook и отправить его с помощью SWIFTMailer и SMTP (Mandrill).

Вот мой код:

<?php   

if(!isset($_POST['mandrill_events'])) {
echo 'A mandrill error occurred: Invalid mandrill_events';
exit;
}

// -------------- Receive --------------------------
$mail = array_pop(json_decode($_POST['mandrill_events']));


// ----------------- Send ----------------------------------------
include_once "swiftmailer-master/lib/swift_required.php";

$subject = $mail->msg->subject . " From " . $mail->msg->from_email;
$from = array('info@myDomain.ir' =>'myDomain');
$to = array(
  'myEmail@yahoo.com' => 'Hamed Gh'
);

$transport = Swift_SmtpTransport::newInstance('smtp.mandrillapp.com', 25,tls);
$transport->setUsername('username');
$transport->setPassword('***********');

$swift = Swift_Mailer::newInstance($transport);

$message = new Swift_Message($subject);
$message->setFrom($from);

//I think there is a problem here!!
foreach ($mail->msg->attachments as $attachment) {
$myType = $attachment->type;
$myName = $attachment->name;
$myContent = $attachment->content;

$attachment = Swift_Attachment::newInstance()
      ->setFilename($myName)
      ->setContentType($myType)
      ->setBody($myContent)
      ;
$message->attach($attachment);
}

$body = $mail->msg->html;
$message->setBody($body, 'text/html');

$message->setTo($to);

$text = "Mandrill speaks plaintext";
$message->addPart($text, 'text/plain');

if($recipients = $swift->send($message, $failures) )
{
 echo 'Message successfully sent!';
} else {
 echo "There was an error:\n";
 print_r($failures);
}
?>
.

Я ищу по образцу и прочитайте Docs SwiftMailer, но я не смог найти способ, который решает мою проблему. Все вложения будут повреждены в пункте назначения!

Это было полезно?

Решение

Содержание прикрепленных файлов в Mandrill являются Base64, закодированным по умолчанию (см. Поле Base64 в JSON).

Для установки прикрепленного содержимого в SWIFTMailer необходимо декодировать содержимое.

$myContent = base64_decode($attachment->content);
.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top