Home > php教程 > PHP源码 > phpmailer在线文档发布

phpmailer在线文档发布

PHP中文网
Release: 2016-05-25 17:08:19
Original
1164 people have browsed it

代码

<?php
include (&#39;class-phpmailer.php&#39;);
include (&#39;class-smtp.php&#39;);

$mail=new PHPMailer();

// 设置PHPMailer使用SMTP服务器发送Email
$mail->IsSMTP();

// 设置邮件的字符编码,若不指定,则为&#39;UTF-8&#39;
$mail->CharSet=&#39;GB2312&#39;;

// 添加收件人地址,可以多次使用来添加多个收件人
$mail->AddAddress(&#39;xxxx@gmail.com&#39;);

// 设置邮件正文
$message=&#39;用WordPress的代码发送的Email&#39;;
$mail->Body=$message;

// 设置邮件头的From字段。
// 对于网易的SMTP服务,这部分必须和你的实际账号相同,否则会验证出错。
$mail->From=&#39;xxxxxx@163.com&#39;;

// 设置发件人名字
$mail->FromName=&#39;Wang Jinbo&#39;;

// 设置邮件标题
$mail->Subject=&#39;Test Mail&#39;;

// 设置SMTP服务器。这里使用网易的SMTP服务器。
$mail->Host=&#39;smtp.163.com&#39;;

// 设置为“需要验证”
$mail->SMTPAuth=true;

// 设置用户名和密码,即网易邮件的用户名和密码。
$mail->Username=&#39;xxxxxx&#39;;
$mail->Password=&#39;xxxxxx&#39;;

// 发送邮件。
$mail->Send();
?>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template