我有以下php代码用于发送带有phpmailer的电子邮件
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->SetFrom($from, $sender_name);
$mail->Subject = $subject;
$mail->AddAddress($to, "test");
$mail->Body = $body; //$body is an html content
$mail->Send();
这将发送一封电子邮件。我需要发送纯文本替代方案,因为电子邮件客户端没有HTML支持。
有可能吗?
可以用php mail()
函数吗?
答案 0 :(得分:1)