0

我想用 utf8 编码发送这封电子邮件的消息..

我能为此做些什么

include 'functions.php';
    $name = stripslashes($_POST['name']);
    $email = trim($_POST['email']);
    $subject = stripslashes($_POST['subject']);
    $message = stripslashes($_POST['message']);
    $cap=strtoupper($_POST['cap']);

    $error = '';


$mail = mail(WEBMASTER_EMAIL,$subject,$message,
        "From: ".$name." <".$email.">\r\n"
        ."Reply-To: ".$email."\r\n"
        ."X-Mailer: PHP/" . phpversion());

我可以用 utf8 发送什么?

4

3 回答 3

2

您可以在电子邮件标头中指定编码,如下所示:

$mail = mail(WEBMASTER_EMAIL,$subject,$message,
        "From: ".$name." <".$email.">\r\n"
        ."Reply-To: ".$email."\r\n"
        ."Content-type: text/html; charset=UTF-8\r\n"
        ."X-Mailer: PHP/" . phpversion());
于 2012-12-05T21:23:27.290 回答
1

您可以使用 php 的 utf8_encode 函数。像这样:

$message = utf8_encode(stripslashes($_POST['message']));

这会将编码的字符串 utf8 存储在您的 $message 变量或任何其他变量中。

编辑

如果您使用 swiftmailer 库,它将默认为 utf8 编码。

于 2012-12-05T21:01:33.993 回答
0

您需要在标头中设置 utf-8 编码并对主题进行编码,因为它很容易被损坏。我个人创建了自己的函数,它还增加了设置发件人地址的功能:

function mail_utf8 ($to, $subject='', $message='', $from='', $header='') {
  if (preg_match("/\<html.*\>/i", $message))
    $content_type = "html";
  else
    $content_type = "plain";

  $header .= "\nMIME-Version: 1.0";
  $header .= "\nContent-type: text/$content_type; charset=UTF-8";
  if ($from)
    $header .= "\nFrom: ".$from;
  mail($to, "=?UTF-8?B?".base64_encode($subject)."?=", $message, trim($header));
}
于 2013-05-31T16:28:31.903 回答