我使用PHPmailer在我的网站上发送电子邮件.我的代码工作正常但有时在电子邮件正文中随机地方包含感叹号.我的代码如下:
原文链接:/php/130890.html$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();
这很好用.但无法找到为什么有时感叹.
提前致谢…