1

我正在尝试在收到电子邮件时使 utf-8 工作。填满表格后,字符显示为代码 if is ç/Ç 显示 &$ 例如:Avan ç ado 显示 Avan &$ ado

我尝试使用“ header('Content-Type: text/html;charset=UTF-8'); ”但仍然无法正常工作,请帮助我,非常感谢...

这是我的代码...

<?php

    //Get Data do Site
    $name = strip_tags($_POST['name']);
    $email = strip_tags($_POST['email']);
    $service = strip_tags($_POST['service']);
    $phone = strip_tags($_POST['phone']);
    $phoneconfirm = strip_tags($_POST['phoneconfirm']);
    $priority = strip_tags($_POST['priority']);
    $subject = strip_tags($_POST['subject']);
    $message = strip_tags($_POST['message']);

        // Send Message
    header('Content-Type: text/html;charset=UTF-8');
    mail( "THEEMAIL@GOES.HERE", "Via Website",
    "De: $name\n E-Mail: $email\n Serviço: $service\n Telefone/Celular: $phone\n Ligar/Retornar: $phoneconfirm\n Prioridade: $priority\n Assunto: $subject\n Mensagem:\n $message",
    "Para: WebSite");
    ?>

Python:实时导入

我有以下文件结构

  • 源代码
    • mrLib
      • 联网
        • mrSocketManager.py
        • mr协议.py
    • 测试
      • 套接字测试.py

在 sockettest.py 中,我可以使用导入 mrSocketManager 模块

from mrLib.networking.mrSocketManager import mrSocketManager

和模块 mrProtocol 使用

from src.mrLib.networking import mrProtocol

没有src它就不起作用(未解决的导入)。为什么它一次工作一次不工作src

4

7 回答 7

3

您没有在此处设置邮件标头,而是在设置 http 标头。此函数header正在发送原始 HTTP 标头,它对您发送的电子邮件没有任何作用

   header('Content-Type: text/html;charset=UTF-8');

您需要添加标题“Content-Type: text/html; charset=UTF-8”(用于 HTML 电子邮件正文)或“Content-Type: text/plain;charset=UTF-8”(用于纯文本电子邮件正文)到你的mail功能。像这样。

$headers = array("Content-Type: text/html; charset=UTF-8");
mail($to, $subject, $message, $headers)

此外,对于电子邮件,应使用 CRLF (\r\n) 分隔每一行,而不是仅使用换行符 (\n)。一个完整的示例最终结果可能看起来更像这样:

<?php

    $crlf = "\r\n";

    //Get Data
    $name = strip_tags($_POST['name']);
    $email = strip_tags($_POST['email']);
    $service = strip_tags($_POST['service']);
    $phone = strip_tags($_POST['phone']);
    $phoneconfirm = strip_tags($_POST['phoneconfirm']);
    $priority = strip_tags($_POST['priority']);
    $subject = strip_tags($_POST['subject']);
    $message = strip_tags($_POST['message']);

    // Parse/Format/Verify Data
    $to      = "THETOEMAIL@GOES.HERE";
    $from    = 'THEFROMEMAIL@GOES.HERE';
    $subject = "Via Website";
    $message = "De: $name$crlf E-Mail: $email$crlf Serviço: $service$crlf
         Telefone/Celular: $phone$crlf Ligar/Retornar: $phoneconfirm$crlf 
         Prioridade: $priority$crlf Assunto: $subject$crlf Mensagem:$crlf 
         $message";

    // Setup EMAIL headers, particularly to support UTF-8
    // We set the EMAIL headers here, these will be sent out with your message
    // for the receiving email client to use.
    $headers = 'From: ' . $from  . $crlf .
               'Reply-To: ' . $from  . $crlf .
               'Content-Type: text/plain; charset=UTF-8' .  $crlf .
               'Para: WebSite'  .  $crlf .
               'X-Mailer: PHP/' . phpversion();

    // Then we pass the headers into our mail function
    mail($to, $subject, $message, $headers);
?>

参考:

于 2013-09-12T13:29:42.620 回答
1

以下是它在我的情况下的工作方式(塞尔维亚语、克罗地亚语、波斯尼亚语......):

在 HTML 页面中:在您的 email-form.html 的标题中:

<meta http-equiv="Content-Type" content="text/html; charset=windows-UTF-8">

并在“表格”中:

<form name="contactform" method="post" action="http://yourdomain.com/e-mail.php" accept-charset='UTF-8' >    

在 PHP 邮件程序中:

// create email headers
       $headers = 'From: '.$email_from."\r\n".
       'Content-Type: text/plain; charset=UTF-8' . "\r\n" .
       'Para: WebSite'  .  "\r\n" .
       'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);?>    
于 2014-03-15T04:36:57.113 回答
0

如果您不喜欢使用外部类,可以按照PHP 手册页中的示例进行操作。基本上,您只需将 UTF-8 添加到您的邮件标头(而不是浏览器标头)。

$标头=数组
    (
        'MIME 版本:1.0',
        '内容类型:文本/html;charset="UTF-8";',
        '内容传输编码:7bit',
        '日期: ' 。日期('r',$_SERVER['REQUEST_TIME']),
        '消息ID:',
        '从: ' 。$来自,
        '回复: ' 。$来自,
        '返回路径:' 。$来自,
        'X-Mailer: PHP v' 。php版本(),
        'X-起源-IP:'。$_SERVER['SERVER_ADDR'],
    );

    mail($to, '=?UTF-8?B?' . base64_encode($arr['subject']) . '?=', $arr['message'], implode("\n", $headers) );
于 2013-09-12T13:59:01.447 回答
0

为您的字段尝试此语法。当我尝试发送法语口音时,我遇到了完全相同的问题:

$variable = utf8_encode(htmlentities($_POST['variable'], ENT_QUOTES, "UTF-8"));

以上采用表单字段并将其放入正确编码为 UTF-8 的变量中。

对于您的示例,我已相应地对其进行了更改,因此请试一试:

<?php

$name           = utf8_encode(htmlentities($_POST['name'], ENT_QUOTES, "UTF-8"));
$email          = utf8_encode(htmlentities($_POST['email'], ENT_QUOTES, "UTF-8"));
$service        = utf8_encode(htmlentities($_POST['service'], ENT_QUOTES, "UTF-8"));
$phone      = utf8_encode(htmlentities($_POST['phone'], ENT_QUOTES, "UTF-8"));
$phoneconfirm   = utf8_encode(htmlentities($_POST['phoneconfirm'], ENT_QUOTES, "UTF-8"));
$priority       = utf8_encode(htmlentities($_POST['priority'], ENT_QUOTES, "UTF-8"));
$subject        = utf8_encode(htmlentities($_POST['subject'], ENT_QUOTES, "UTF-8"));
$message        = utf8_encode(htmlentities($_POST['message'], ENT_QUOTES, "UTF-8"));

// Send Message
header('Content-Type: text/html;charset=UTF-8');
mail( "THEEMAIL@GOES.HERE", "Via Website",
"De: $name\n E-Mail: $email\n Serviço: $service\n Telefone/Celular: $phone\n Ligar/Retornar: $phoneconfirm\n Prioridade: $priority\n Assunto: $subject\n Mensagem:\n $message",
"Para: WebSite");

?>

希望这可以帮助你!

祝你好运,米奇。

于 2013-09-12T14:14:03.600 回答
0

我认为这不是电子邮件的问题,是$_POST变量中包含的字符串字符的问题!

当您将这些字符串从 HTML 表单发送到您的 PHP 时,它们不会使用 UTF8 编码。

您的 HTML 必须具有<meta charset="utf-8">,并且当 HTML 从 PHP 呈现时,PHP 必须具有header('Content-Type: text/html;charset=UTF-8');.

像这样:

<?php
 header('Content-Type: text/html;charset=UTF-8');
?>
<html>
<head>
    ...
    <meta charset="utf8">
    ...
<body>

<form>
    Name:
    <input type="text" name="name" />
    ...

    Service:
    <input type="text" name="service" />
    ...

    <submit button>
</form>

</body>
</html>
于 2013-09-12T14:04:01.923 回答
0

我建议使用像 Swift Mailer 这样的框架来发送电子邮件,而不是创建自己的电子邮件标头。这也可能解决字符集问题。

http://swiftmailer.org/

于 2013-09-12T13:28:37.320 回答
0

header()函数用于将 HTTP 标头发送到正在加载页面的 Web 浏览器。它对通过 发送的电子邮件内容没有任何影响mail()

为了使用发送邮件标题,mail()您需要以正确的格式手动构建它们。

这可能很难正确处理,并且可能会产生非常混乱的代码,因此我建议您考虑使用像PHPMailerSwiftmailer这样的体面的邮件程序类,其中任何一个都可以让您以更简单的方式指定邮件标头.

例如,使用 PHPMailer,您的代码可能如下所示:

$mail = new PHPMailer();
$mail->From = $from;
$mail->AddAddress($to);
$mail->Body = "......";
$mail->Subject = "....";
$mail->CharSet="UTF-8";    //see, very easy in phpMailer!
$mail->Send();

希望有帮助。

于 2013-09-12T13:32:47.090 回答