最新的Web开发教程
 

PHP mail() Function

<PHP邮件参考

发送一个简单的电子邮件:

<?php
// the message
$msg = "First line of text\nSecond line of text";

// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);

// send email
mail("[email protected]","My subject",$msg);
?>

定义和用法

mail()功能可让您直接从脚本发送电子邮件。

句法

mail( to,subject,message,headers,parameters );

参数 描述
to 需要。 指定邮件的接收器/接收器
subject 需要。 指定电子邮件的主题。 Note:此参数不能包含任何换行符
message 需要。 定义要发送的消息。 每行应该以LF分离(\n) 。 行应该不超过70个字符。

Windows note:如果在邮件中一行的开头发现一个句号,它可能会被删除。 为了解决这个问题,更换句号用双点:
<?PHP
$ TXT = str_replace("\n.", "\n.." , $txt) ;
?>

headers 可选的。 指定附加标题,如发件人,抄送,和密件抄送。 的附加头应该用CRLF分离(\r\n)

Note:当发送电子邮件时,它必须包含From头部。 这可以用这个参数或者在php.ini文件中设置。

parameters 可选的。 指定sendmail程序的附加参数(the one defined in the sendmail_path configuration setting) 。 (即这可以用于使用sendmail与-f sendmail的选项时,设置信封发件人地址)

技术细节

返回值: 返回地址参数的哈希值,或FALSE的失败。 Note:请记住,即使邮件被接受交付,这并不意味着电子邮件实际上是发送和接收!
PHP版本: 4+
PHP更新日志: PHP 4.3.0: (Windows only)所有自定义页眉(如发件人,抄送,密送和日期)的支持,并且不区分大小写。
PHP 4.2.3:在安全模式下的参数,参数被禁用
PHP 4.0.5:添加参数参数

实施例2

发送一封电子邮件,额外的头:

<?php
$to = "[email protected]";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]" . "\r\n" .
"CC: [email protected]";

mail($to,$subject,$txt,$headers);
?>

实施例3

发送HTML电子邮件:

<?php
$to = "[email protected], [email protected]";
$subject = "HTML email";

$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";

// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";

// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";

mail($to,$subject,$message,$headers);
?>

<完整PHP邮件参考