需要帮助才能使用 PHPMailer 发送电子邮件


Need help to send email with PHPMailer

我正在使用PHPMailer发送电子邮件。除了一件事外,一切都运行良好。如果主题包含 UTF-8 字符,则无法发送电子邮件。我已经设置了$mail->CharSet="UTF-8".

尝试编码主题以处理 utf8 字符...

$sendsubject= "=?utf-8?b?".base64_encode($subject)."?=";
$mail = new PHPMailer();
$mail->Subject = $sendsubject;