1

这是我的代码:

        $body = "Name:{$name}".PHP_EOL;
    $body .= "Phone:".$phone.PHP_EOL;
    $body .= "Email:".$email."\n\n";
    $body .= "Comments:".$comments."\n\n";
    $headers = 'From: MAILER <'.$emailTo.'>' . "\r\n" . 'Reply-To: '. $email."\r\n";
    $headers .= "Content-Type: text/html; charset=UTF-8"; 
    mail($emailTo, "New message", $body, $headers);

如您所见,我尝试使用 \r\n\、\n\n、PHP_EOL 等...唯一有效的方法是删除“内容类型”标头。有人知道为什么会这样吗?!

4

2 回答 2

3

由于您要发送 HTML 电子邮件,因此您需要使用它<br> 来设置换行符。好吧,或者将所有内容包装在<pre></pre>标签中以纪念 \n。如果您在输出中不需要 HTML,只需将您的内容设置为'text/plain',就会显示换行符。

由于它不是多部分,请尝试添加MIME-Version: 1.0到标题中。这可能有助于内容类型。

$headers .= "MIME-Version: 1.0\r\nContent-Type: text/plain; charset=UTF-8";
于 2012-10-18T12:01:53.740 回答
1

用作示例中的说明

$toemail=$emailid;
                $subject="You have registered successfully , please activate your account.";
                $msgbody.='<table width="100%" align="center" cellpadding="5" cellspacing="0" border="0">';
                $msgbody.='<tr><td>Admin Approved your profile and the details are : </td></tr>';
                $msgbody.='<tr><td>Username : '.$username.'</td></tr>';
                $msgbody.='<tr><td>Email : '.$emailid.'</td></tr>';
                $msgbody.='<tr><td>Password : '.$_SESSION['fan_user_password'].'</td></tr>';
                $msgbody.='<tr><td><a href="'.BASE_URL.'activate/fan/'.$lastid.'/'.$activation_code.'">';
                $msgbody.='Click here </a>to activate your account.</td></tr>';
                $msgbody.='</table>';
                mail($toemail,$subject,$msgbody,$from='');
于 2012-10-18T12:51:13.230 回答