显示名称而不是电子邮件的电子邮件标题的格式是什么?
我试图创build一个PHP脚本,将使用mySQL数据库处理我的邮件列表,我大部分已经到位。 不幸的是,我似乎无法得到正确的头,我不知道是什么问题。
$headers='From: noreply@rilburskryler.net \r\n'; $headers.='Reply-To: noreply@rilburskryler.net\r\n'; $headers.='X-Mailer: PHP/' . phpversion().'\r\n'; $headers.= 'MIME-Version: 1.0' . "\r\n"; $headers.= 'Content-type: text/html; charset=iso-8859-1 \r\n'; $headers.= "BCC: $emailList";
我在接收端得到的结果是:
“noreply"@rilburskryler.net rnReply – 到:noreply@rilburskryler.netrnX-Mailer:PHP / 5.2.13rnMIME-Version:1.0
要显示名称,而不是显示的电子邮件地址,请使用以下内容:
"John Smith" <johnsemail@hisserver.com>
简单。
关于断行符,这是因为您将文本用撇号括起来而不是引号:
$headers = array( 'From: "The Sending Name" <noreply@rilburskryler.net>' , 'Reply-To: "The Reply To Name" <noreply@rilburskryler.net>' , 'X-Mailer: PHP/' . phpversion() , 'MIME-Version: 1.0' , 'Content-type: text/html; charset=iso-8859-1' , 'BCC: ' . $emailList ); $headers = implode( "\r\n" , $headers );
在一个单引号string中 ,只有转义序列\'
和\\
分别被'
和\
replace。 您需要使用双引号将转义序列\r
和\n
replace为相应的字符:
$headers = "From: noreply@rilburskryler.net \r\n"; $headers.= "Reply-To: noreply@rilburskryler.net\r\n"; $headers.= "X-Mailer: PHP/" . phpversion()."\r\n"; $headers.= "MIME-Version: 1.0" . "\r\n"; $headers.= "Content-type: text/html; charset=iso-8859-1 \r\n"; $headers.= "BCC: $emailList";
您也可以使用数组来收集标题字段,并将它们放在一起:
$headers = array( 'From: noreply@rilburskryler.net', 'Reply-To: noreply@rilburskryler.net', 'X-Mailer: PHP/' . phpversion(), 'MIME-Version: 1.0', 'Content-type: text/html; charset=iso-8859-1', "BCC: $emailList" ); $headers = implode("\r\n", $headers);
$to = 'SendersName@domain.com'; $to .=', ' . $_POST['Femail']; $subject = 'Contact Us Form'; // message $message ="<html> <head> <title>Email title</title> </head> <body> <h3>important message follows</h3> <div> you are being brought this email to be safe. </div> </body> </html>"; // To send HTML mail, the Content-type header must be set $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Additional headers $headers .= 'To: SendersEmailName <SendersEmailName@domain.com>' . "\r\n"; $headers .= 'From: YourName <YourName@domain.com>' . "\r\n"; $headers.='X-Mailer: PHP/' . phpversion()."\r\n"; $headers.= "BCC: $emailList"; mail($to, $subject, $message, $headers);