1

我在 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));

请帮助我,在此先感谢。

4

2 回答 2

1

尝试使用 Trim 函数或尝试 str_replace(' ','','生成图像的变量')

于 2015-03-25T11:59:41.917 回答
1

我终于能够找到解决方案。我添加了这样的编码属性 $mail->encoding = base64. 有效。

于 2015-04-17T11:23:17.217 回答