PHP Mail 函數(shù)
PHP Mail 函數(shù)
PHP Mail 簡(jiǎn)介
mail() 函數(shù)允許您從腳本中直接發(fā)送電子郵件。
需求
要使郵件函數(shù)可用,PHP 需要已安裝且正在運(yùn)行的郵件系統(tǒng)。要使用的程序是由 php.ini 文件中的配置設(shè)置定義的。
安裝
Mail 函數(shù)是 PHP 核心的組成部分。無(wú)需安裝即可使用這些函數(shù)。
Runtime 配置
Mail 函數(shù)的行為受 php.ini 文件中的設(shè)置的影響。
Mail 配置選項(xiàng):
名稱 | 默認(rèn) | 描述 | 可更改 |
---|---|---|---|
SMTP | "localhost" | Windows 專用:SMTP 服務(wù)器的 DNS 名稱或 IP 地址。 | PHP_INI_ALL |
smtp_port | "25" | Windows 專用:SMTP 端口號(hào)。自 PHP 4.3 起可用。 | PHP_INI_ALL |
sendmail_from | NULL | Windows 專用:規(guī)定在由 PHP 發(fā)送的電子郵件中使用的 "from" 地址。 | PHP_INI_ALL |
sendmail_path | NULL | Unix 系統(tǒng)專用:規(guī)定 sendmail 程序的路徑(通常 /usr/sbin/sendmail 或 /usr/lib/sendmail)。 | PHP_INI_SYSTEM |
PHP Mail 函數(shù)
PHP:指示支持該函數(shù)的最早的 PHP 版本。
函數(shù) | 描述 | PHP |
---|---|---|
ezmlm_hash() | 計(jì)算 EZMLM 郵件列表系統(tǒng)所需的散列值。 | 3 |
mail() | 允許您從腳本中直接發(fā)送電子郵件。 | 3 |
PHP Mail 常量
無(wú)。
相關(guān)文章
- PHP 教程
- PHP 常量
- PHP 數(shù)組
- PHP 多維數(shù)組
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP array_diff_assoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)