感叹号使用phpmailer出现在电子邮件正文中

Cod*_*ior 7 php phpmailer

我使用phpmailer在我的网站上发送电子邮件.我的代码工作正常但有时在电子邮件正文中随机地方包含感叹号.我的代码如下:

$mail->SetFrom(FROM_EMAIL,FROM_NAME); //emailid of sender(admin)                
$mail->Subject = 'Subject here.'; //subject of email
$mail->AddAddress(Address here); //emailid of user(recipient)
$content = 'some html code here';

$mail->MsgHTML($content); //this is body of email
$mail->Send();
Run Code Online (Sandbox Code Playgroud)

这很好用.但无法找到为什么有时感叹.提前致谢...

Mut*_*ran 9

我认为这是因为电子邮件消息在一行中不能超过998个字符.

尝试添加,

$mail->WordWrap = 50;
Run Code Online (Sandbox Code Playgroud)

  • 或尝试添加`$ content = wordwrap($ content,50);`在'$ content ='之后的某些HTML代码';` (3认同)