Home  >  Article  >  Backend Development  >  php 发送邮件

php 发送邮件

WBOY
WBOYOriginal
2016-06-23 14:30:19871browse

1.

mail() 函数允许您从脚本中直接发送电子邮件。

如果邮件的投递被成功地接收,则返回 true,否则返回 false。

mail (to,subject,message,headers,parameters)

to 必需。规定邮件的接收者。

subject 必需。规定邮件的主题。该参数不能包含任何换行字符。

message 必需。规定要发送的消息。

headers 可选。规定额外的报头,比如 From, Cc 以及 Bcc。

parameters 可选。规定 sendmail 程序的额外参数。

需要: PHP.ini  的配置        Sendmail 的支持

例如:

$to = "******@163.com";
$subject = "My subject";
$txt = "Hello world!**********@qq.com";

//$headers =



mail($to,$subject,$txt,"From: *********@qq.com" . "\r\n" ."CC: **********@hotmail.com");
?>


headers 写错会造成 发送失败

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP-图片压缩Next article:php静态化类