除了 hotmail 之外,所有帐户的邮件都很好。在 hotmail 中,邮件正文变得空白。但是在查看查看源时,邮件正文正在显示。请帮助我们是否需要更改 hotmail 的任何设置
function Trigger_WelcomeEmail(&$tNG) {
global $DID;
$emailObj = new tNG_Email($tNG);
$emailObj->setFrom("test <test@test.com>");
$emailObj->setTo("{email}");
$emailObj->setCC("");
$emailObj->setBCC("test@test.com");
$emailObj->setSubject("Smile! You Were Successfully Registered for test.com");
$emailObj->setContentFile("welcomeUS.html");
$emailObj->setEncoding("ISO-8859-1");
$emailObj->setFormat("HTML/Text");
$emailObj->setImportance("Normal");
return $emailObj->Execute();
}