联系表单电子邮件主题的 UTF-8 编码 [英] UTF-8 encoding for subject in contact form email

查看:17
本文介绍了联系表单电子邮件主题的 UTF-8 编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在这个网站上网站链接联系表我需要将主题发送到电子邮件UTF-8.需要在代码的什么地方声明UTF-8编码?

On this sites Website Link contact form I need to send the subject for email in UTF-8. Where in the code we need to do declare the UTF-8 encoding?

kontakt.php:

kontakt.php:

<?
require_once "php/sendmail.class.php";
$sendmail = new sendMail();
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$sendmail->setParams($_POST);
$sendmail->parseBody();
$sendmail->setHeaders();
if ($sendmail->send())
{
    header('Location: kontakt.php?success=1');
}
}
?>

sendmail.class.php:

sendmail.class.php:

class sendMail {

var $to      = 'email'; // set contact email

var $name    = '';
var $subject = '';
var $email   = '';
var $body    = '';
var $error   = array();
var $headers = array();

function setHeaders()
{
    $this->headers = "From: $this->email
";
    $this->headers.= "MIME-Version: 1.0
";
    $this->headers.= "Content-type: text/html; charset=UTF-8
";
}

function parseBody()
{
    $message     = '<html><body>';
    $message .= '<table rules="all" style="border-color: #666;" cellpadding="10">';
    $message .= '<tr style="background-color: #eee;"><td><strong>Name:</strong> </td><td>' . $this->name . '</td></tr>';
    $message .= "<tr><td><strong>E-Mail-Adresse:</strong> </td><td>" . $this->email . "</td></tr>";
    $message .= "<tr><td><strong>Betreff:</strong> </td><td>" . $this->subject . "</td></tr>";
    $message .= "<tr><td><strong>Text:</strong> </td><td>" . $this->body . "</td></tr>";
    $message .= "</table>";
    $message .= "</body></html>";
    $this->body  = $message;
}

function send()
{
    if ($this->error)
    {
        return FALSE;
    }

    if (mail($this->to, $this->subject, $this->body, $this->headers))
    {
        return TRUE;
    }
    else
    {
        $this->error[] = 'Fehler beim senden';
        return FALSE;
    }

在主题中,我需要 utf 8 德语字符编码.我们需要在代码的什么地方声明呢?对于消息,我发现了该怎么做,但对于主题,我没有找到解决方案.

In the subject I need the utf 8 german characters encoding. Where do we need to declare it in the code? For the message I found out what to do but for the subject I found no solution.

推荐答案

我是这样做的:

$head = "From: "=?ISO-8859-15?Q?".imap_8bit("äöüßÄÖÜ sollte hier gehen")."?=" <info@mydomain.de>
";
$subject = "=?ISO-8859-15?Q?".imap_8bit("äöüßÄÖÜ sollte hier gehen")."?=";
mail($mail,$subject,$text,$head);

这只是拉丁语 15(德语)编码.utf-8 的工作方式相同:在此处查看有关如何在邮件标头中使用字符编码的详细说明:http://ncona.com/2011/06/using-utf-8-characters-on-an-e-mail-subject/

that is ofc just Latin-15 (German) encoding. utf-8 works the same way: look here for a great explanation on how to use character encoding in mail headers: http://ncona.com/2011/06/using-utf-8-characters-on-an-e-mail-subject/

对于您的代码,您必须在 sendmail 类中进行更改:

for your code you have to change this in the sendmail class:

if (mail($this->to, '=?utf-8?B?'.base64_encode($this->subject).'?=', $this->body, $this->headers))

!这仅在您的 php 文件是 utf-8 编码时才能正常工作!

! this only works properly if your php file is utf-8 encoded !

还是很烦.然后我切换到 phpmailer.为你做一切.方式更容易.我建议你使用那个.

still very annoying. then i switched to phpmailer. that does everything for you. way more easy. i would suggest you use that.

这篇关于联系表单电子邮件主题的 UTF-8 编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆