我在 html 邮件中看到随机空格,它破坏了整个 html 结构并给出了奇怪的 html 邮件。
我正在使用 SENDY 通讯 API 向客户发送邮件。html 邮件在所有其他电子邮件客户端(如 Outlook Express 等)中运行良好。除了“ZIMBRA”电子邮件客户端,我看到随机空格导致奇怪的 html 邮件。
例如:如果图像路径是http://www.example.com/12.jpg它给了你
http://www.example.com/1 2.jpg
代码
$postdata = http_build_query(
array(
'api_key' => 'xxx',
'from_name' => 'xxx',
'from_email' => 'xxx',
'reply_to' => 'xxx',
'subject' => 'Daily',
'html_text' => html_content,
'list_ids' => 'hhjh',
'send_campaign' => 1
)
);
$opts = array('http' => array('method' => 'POST', 'header' => Array('Content: text/html', 'charset=UTF-8'), 'content' => $postdata));
请帮助我,在此先感谢。