在php中自帶了郵箱發送函數mail()我們可以直接使用此函數進行郵件發送,下面我來介紹一些常用的郵箱發送實例,最簡單的就是mail函數了。
例
代碼如下 復制代碼function send_mail($from, $to, $subject, $message)
{
if ($from == "")
{
$from = '回憶未來
}
$headers = 'MIME-Version: 1.0' . "rn";
$headers .= 'Content-type: text/html; charset=gb2312' . "rn";
$headers .= 'From: ' . $from . "rn";
mail($to, $subject, $message, $headers);
}
?>
提示
要使用的程序是由 php.ini 文件中的配置設置定義的,郵件函數的行為受 php.ini 的影響,我們必須先配置才行。
名稱 默認 描述 可更改
SMTP "localhost" Windows 專用:SMTP 服務器的 DNS 名稱或 IP 地址。 PHP_INI_ALL
smtp_port "25" Windows 專用:SMTP 段口號。自 PHP 4.3 起可用。 PHP_INI_ALL
sendmail_from NULL Windows 專用:規定從 PHP 發送的郵件中使用的 "from" 地址。PHP_INI_ALL
sendmail_path NULL Unix 系統專用:規定sendmail 程序的路徑(通常 /usr/sbin/sendmail 或
/usr/lib/sendmail) PHP_INI_SYSTEM