例
發送一個簡單的電子郵件:
<?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:如果在郵件中一行的開頭發現一個句號,它可能會被刪除。 為了解決這個問題,更換句號用雙點: |
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郵件參考