我有一份工作联系表格,但遇到以下问题:该网站主要提供芬兰语内容,表格并不真正喜欢斯堪的纳维亚字母(ä,ö,å)电子邮件看起来都乱码直接去了垃圾邮件。我尝试过更改HTML字符集,但它没有做任何事情。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Artotek - Yhteydenotto</title>
</head>
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "artjom@europe.com";
$email_subject = "**Yhteydenotto**";
function died($error) {
// your error code can go here
echo "Olemme pahoillamme, mutta lomakkeestasi löytyi virhe(itä). ";
echo "Alapuolella näet virheesi.<br /><br />";
echo $error."<br /><br />";
echo "Ole hyvä, ja mene takaisin korjaamaan nämä virheet, ja yritä uudelleen.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments'])) {
died('Lomakkeessasi oli ongelmia');
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // not required
$comments = $_POST['comments']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'Sähköpostiosoite ei ole käytössä.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'Etunimesi ei näytä olevan oikea.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'Sukunimesi ei näytä olevan oikea.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'Viesti ei täytä vähimmäisvaatimuksia.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Lomaketiedot alla.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "Etunimi: ".clean_string($first_name)."\n";
$email_message .= "Sukunimi: ".clean_string($last_name)."\n";
$email_message .= "Sähköposti: ".clean_string($email_from)."\n";
$email_message .= "Puhelinnumero: ".clean_string($telephone)."\n";
$email_message .= "Viesti: ".clean_string($comments)."\n";
//create email headers
mail($email_to, $email_subject, $email_message, $headers, 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n");
/*
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
//@mail($email_to2, $email_subject, $email_message, $headers);
*/
?>
<!-- include your own success html here -->
<div style="text-align: center; background: lightgreen; top: 50%; position: absolute; left: 0%; box-shadow: gray 5px 3px 5px;">
<font face="century gothic"><h1>Kiitos yhteydenotostasi. Otamme teihin yhteyttä; piakkoin.</h1>
</div>
<div style="position: absolute; top: 60%; right: 15%; text-align:center; background: red; width: 30%;">
<a href="index.php" style="color:inherit; text-decoration: none;"><h2>Takaisin</h2></font>
<?php
}
?>
答案 0 :(得分:0)
我建议您选择像'swiftmailer'这样的图书馆,而不是尝试使用邮件制作邮件 - http://swiftmailer.org/
这将处理字符集问题,以及设置多部分邮件的界限等,以减少您点击垃圾邮件过滤器的机会。
“邮件”听起来像一个简单的解决方案,但只要您想要除ASCII中的纯文本邮件之外的其他任何东西,它将比它的价值更麻烦。
答案 1 :(得分:0)
1)首先,您可能想要检查文件的真实文件编码,说明顶部的字符集并不意味着您的文件以这种方式编码。
2)使用试用和测试邮件库(如swift邮件程序,zend邮件或PHPMailer)发送电子邮件,除了发送简单的基于文本的ASCII电子邮件之外,我不知道许多尝试使用“邮件”发送邮件的硬核开发人员()“,他们都使用库!
3)使用电子邮件测试/预览应用程序确保您的电子邮件在所有客户端中正确显示。我曾经失去了6小时试图弄清楚为什么我的邮件看起来很糟糕,并且使用工具我现在不记得这个名字,我看到它只是在我的客户端它很糟糕,其他人都很好......它给了我需要完成它的提示,因为我知道我正在寻找一个特定的问题而不是一个大的问题!