Posted in 面试题 onDecember 26, 2012
PHP的mail()函数可以实现直接用脚本发送邮件。
用mail()函数发送邮件之前,首先需要在php.ini文件里面设置一下邮件服务属性,主要的设置选项如下:
属性 缺省值 说明 Changeable
SMTP “localhost” 只适用于Windows: SMTP服务器的 DNS 名或者 IP地址 PHP_INI_ALL
smtp_port “25″ 只适用于Windows: SMTP 端口号 PHP_INI_ALL
sendmail_from NULL 只适用于Windows: 指定要发送邮件的From地址 PHP_INI_ALL
sendmail_path NULL 只适用于Unix: 指定发送邮件的程序路径 PHP_INI_SYSTEM
如下代码实现了一个简单的发送邮件例子:
$to = “someone@example.com”;
$subject = “欢迎来到IT公司面试手册”;
$message = “Hello! 欢迎来到IT公司面试手册.”;
$from = “someonelse@example.com”;
$headers = “From: $from”;
mail($to,$subject,$message,$headers);
echo “Mail Sent.”;
?>
用mail()函数发送邮件之前,首先需要在php.ini文件里面设置一下邮件服务属性,主要的设置选项如下:
属性 缺省值 说明 Changeable
SMTP “localhost” 只适用于Windows: SMTP服务器的 DNS 名或者 IP地址 PHP_INI_ALL
smtp_port “25″ 只适用于Windows: SMTP 端口号 PHP_INI_ALL
sendmail_from NULL 只适用于Windows: 指定要发送邮件的From地址 PHP_INI_ALL
sendmail_path NULL 只适用于Unix: 指定发送邮件的程序路径 PHP_INI_SYSTEM
如下代码实现了一个简单的发送邮件例子:
$to = “someone@example.com”;
$subject = “欢迎来到IT公司面试手册”;
$message = “Hello! 欢迎来到IT公司面试手册.”;
$from = “someonelse@example.com”;
$headers = “From: $from”;
mail($to,$subject,$message,$headers);
echo “Mail Sent.”;
?>
如何用PHP实现邮件发送
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@