2011-08-31 68 views
1

我正在尝试为网站创建并提交表单并在所有字段提交后发送邮件。数据通过ajax调用提交。不同浏览器中的表单编码问题

问题是,我的网站用户使用UTF-8工作,如果我使用Internet Explorer提交表单,则信息(来自表单)不会以UTF-8发送,除非我执行utf8_encode()。但是,如果我发送邮件使用ut8_encode功能Firefox和Chrome停止工作

的一些注意事项的电子邮件...: - 含形式的PHP文件头中UTF-8 - 元标记UTF-8 - 在(其中,将表单提交文件)的ajax.php也已在标题UTF-8 - 电子邮件标头是以UTF-8字符集接收(独立于浏览器的)

代码: ajax.php

$email = $_REQUEST['email']; 
$phone = $_REQUEST['phone']; 
$reply = $_REQUEST['reply']; 

$headers = 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; 
$headers .= 'From: '.$email . "\r\n" . 
'X-Mailer: PHP/' . phpversion(); 

$topic = 'subject'; 
$message = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head> 
<body style="font-size:11px; font-family:Verdana, sans-serif; line-height:17px;"> 
    <h1 style="color:#255670; font-size:16px; font-family: \'Trebuchet MS\', sans-serif; text-transform:uppercase;">Quizz</h1> 
    <div style="background-color:#EFEFEF; padding:10px;"> 
     Nome: <b>'.$name.'</b><br /> 
     Telefone: <b>'.$phone.'</b><br /> 
     E-mail: <a href="mailto: '.$email.'"><b>'.$email.'</b></a><br /> 
    </div> 
    <div style="border-top:1px dashed #8CD3D7; padding:5px; margin:10px 0px 0px 0px;"> 
     <p>'.$reply.'</p> 
    </div> 
</body></html>'; 

$sendMail = mail($adminMail, $topic, $message, $headers); 

的index.php(形式)

<form method="GET" enctype="text/plain" accept-charset="utf-8"> 
<div class="banner-subtitle">Resposta:</div> 
<textarea name="reply" id="quizz-reply" style="width:255px;"></textarea> 
<div class="banner-subtitle">%NAME%:</div> 
<input type="text" id="quizz-name" class="required" name="name" style="width:255px;"/> 

<div class="banner-subtitle">%PHONE%:</div> 
<input type="text" id="quizz-phone" class="required" name="name" style="width:255px;"/> 
<div class="banner-subtitle">%EMAIL%:</div> 
<input type="text" id="quizz-email" class="required" name="email" style="width:255px;"/> 
<div class="banner-subtitle">%SECURITY_CODE%:</div> 
<img style="float:left; margin-right:10px" src="ajax.php?action=generateCaptcha&width=80&height=20&cell=security_code2"/><input type="text" id="quizz-security-code" class="required" name="security_code2" style="width:80px; float:left"/> 
<input type="button" value="%SUBMIT%" onclick="sendOpinion()" style="margin-top: 1px"/> 
</form> 

Ajax请求

$.ajax({ 
        url:'ajax.php?action=sendOpinion&name='+name+'&email='+email+'&phone='+phone+'&passport='+passport+'&reply='+reply, 
        success: function(data) 
        { 
          //alert(data); 
          $('#quizz-name').val(''); 
          $('#quizz-email').val(''); 
          $('#quizz-phone').val(''); 
          $('#quizz-passport').val(''); 
          $('#quizz-reply').val(''); 
        } 
       }); 

任何人都可以请帮助?我不明白我在做什么错...

回答

2

声明您的网站的编码;在<head>标签补充一点:

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

BTW你应该逃脱你的变量,即使在电子邮件:

Nome: <b>'.htmlspecialchars($name, ENT_QUOTES, 'UTF-8').'</b><br /> 

而且在URL中太:

url:'ajax.php?action=sendOpinion&name='+encodeURIComponent(name)+'... 
+0

由于使用encodeURIComponent失踪和解决这个问题。 – jribeiro