我在 php 中的 mail() 函数有一个非常奇怪的错误。
这是我用来发送消息的代码:
$to = strip_tags($_POST['newMail']);
$subject = "Company: Update your email address ";
$message = $mailHeader.'<b>Hello from Company!</b><br/> <br/> Please confirm your new email address by clicking this link: <a href="http://www.Company.com/confirm.php?regID='.$regID.'&newemail='.mysql_escape_string($_POST['newMail']).'" class="link"> Confirm Email Address Change</a><br/><br/><p class="p"><b>Thank you.</b></p><br/><b class="h2">Company.</b>'.$mailFooter;
$from = "<noreply@company.com>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "From: Company Name" . $from. " \r\n";
需要注意的是,公司名称已替换为“公司”。
编辑 - $mailHeader
<html>
<style>
/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/
body {
border: 0;
margin: 0;
padding: 0;
font-size: 100%;
}
html,
body {
height: 100%;
}
.link{
color:#81c6f6;
text-decoration:none;
}
.link:visited {
color:#81c6f6;
}
.link:hover {
color:#f6b181;
}
.h1{
color:#696969;
font:20px/1.5 Helvetica, Geneva, sans-serif;
}
.p{
padding:2px;
color:#787878;
font:16px/1.5 Tahoma, Geneva, sans-serif;
}
.h2{
padding:2px;
color:#81c6f6;;
font:16px/1.5 Tahoma, Geneva, sans-serif;
}
.roundAll{
-moz-border-radius:20px;
border-radius:20px;
-webkit-radius: 20px;
}
#header{
height:71px;
width:100%;
background-color:#99d1f8;
}
#automarginwrap{
width:90%;
margin:0 auto;
text-align:center;
}
#content{
margin:0 auto;
padding:10px;
width:80%;
border: solid 10px #f1f1f1;
background-color:#fff;
}
</style>
<body>
<div id="header"><center><img src="http://www.downloadablecreations.com/images/logo.png" /></center></div>
<div id="automarginwrap">
<div id="content" class="roundAll h1">
$mailFooter -
</div>
</div>
</body>
</html>
现在这工作正常,发送和接收邮件没有出现错误消息,但是当我点击链接时,它会将我定向到在消息的 href 部分中缺少“w”的 URL(Mail.app Apple):
<a href="http://ww.Company.com/confirm.php?
或来自链接的随机信件:
<a href="http://www.Compay.com/confirm.php?
难道我做错了什么?
我相信错误在于电子邮件或编码的字符集方面。
编辑 - 删除 mysql_escape_string() 对结果没有影响。