我正在使用 mandrill 发送用户特定的摘要,一切正常。唯一的问题是 gmail 直接剥离了所有的 id 和类:这很好,因为 mandrill 让您可以将它们转换为 inline-css。那就是:如果它会工作......
如果我将输出粘贴到mailchimps 内联中,它会被正确解析,邮件也会正确发送,API 不会生成任何错误,但没有应用内联 CSS,这会导致 gmail 的样式错误。
这是我使用的代码:
try{
$mandrill = new Mandrill('XXXXX-KEY-XXXXX');
$template_name = 'template_name';
$template_content = array(
array(
'name' => 'std_content00',
'content' => '<div>'.$content.'</div>'
)
);
$message = array(
'text' => '',
'subject' => 'Digest',
'from_email' => 'no-reply@thedigester.eu',
'from_name' => 'no-reply',
'to' => array(
array(
'email' => $userMail,
'name' => $userName,
'type' => 'to'
)
),
'headers' => array('Reply-To' => 'no-reply@thedigester.eu'),
'track_opens' => true,
'track_clicks' => true,
'inline_css' => true,
'merge' => false,
);
$async = false;
$result = $mandrill->messages->sendTemplate($template_name, $template_content, $message, $async);
} catch(Mandrill_Error $e) {
// Mandrill errors are thrown as exceptions
echo 'A mandrill error occurred: ' . get_class($e) . ' - ' . $e->getMessage();
// A mandrill error occurred: Mandrill_Unknown_Subaccount - No subaccount exists with the id 'customer-123'
throw $e;
}