我使用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)
这很好用.但无法找到为什么有时感叹.提前致谢...
我认为这是因为电子邮件消息在一行中不能超过998个字符.
尝试添加,
$mail->WordWrap = 50;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4825 次 |
| 最近记录: |