配置
工欲善其事,必先利其器。首先我們以windows下面為例進行說明,如何設定一下本地的mail。
下載附件 sendmail.zip
-解壓縮到任何路徑,修改sendmail.ini,根據實際需求修改下面的資訊。
[sendmail] smtp_server=smtp.qq.com smtp_port=25 error_log file=error.log debug_logfile=debug.log auth_username=***@qq.com auth_password=*** force_sender=***@qq.com -php.ini [mail function] SMTP = smtp.qq.com smtp_port = 25 sendmail_from = ***@qq.com sendmail_path = "D:/sendmail/sendmail.exe -t -i" mail.add_x_header = On
注意:
目前測試只是qq發送成功,163的不成功可能是他有過濾系統,可以成功傳送給gmail。
語法
mail(to,subject,message,headers,parameters)
定義和用法
mail() 函數允許您從腳本直接發送電子郵件。
如果郵件的投遞被成功地接收,則傳回 true,否則傳回 false。
說明
在 message 參數規定的訊息中,行之間必須以一個 LF(\n)分隔。每行不能超過 70 個字元。
(Windows 下)當 PHP 直接連接到 SMTP 伺服器時,如果在一行開頭發現一個句號,則會被刪掉。若要避免此問題,將單一句號替換成兩個句號。
<?php $text = str_replace("\n.", "\n..", $text); ?>
提示和註解
#:您需要緊記,郵件投遞被接受,並不表示郵件到達了計畫的目的地。
範例
下面引用一個官方的發送HTML郵件的範例。
<?php $to = "somebody@example.com, somebodyelse@example.com"; $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> "; // 当发送 HTML 电子邮件时,请始终设置 content-type $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=utf-8" . "\r\n"; // 更多报头 $headers .= 'From: <webmaster@example.com>' . "\r\n"; $headers .= 'Cc: myboss@example.com' . "\r\n"; mail($to,$subject,$message,$headers); ?>
以上是php:mail()函數使用及設定用法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!