Home >php教程 >php手册 >PHPMailer实现邮件发送例子

PHPMailer实现邮件发送例子

WBOY
WBOYOriginal
2016-05-25 16:45:32983browse

在php中我们在linux服务器安装了邮件组件可以直接使用mail函数发送邮箱,对于windows系统我们多半使用PHPMailer实现邮件发送了,下面来看一个简单的例子.

使用PHPMailer类实现邮件的发送,代码如下:

$phpmailer = new PHPMailer(); 
$phpmailer->IsSMTP();  // 用smtp协议来发 
 
$phpmailer->Host = 'smtp.163.com'; 
$phpmailer->SMTPAuth = true; 
$phpmailer->Username = '******'; //163邮箱帐号 @163前面的那个 
$phpmailer->Password = '******'; //密码 
 
// 可以发信了 
 
$phpmailer->From = '*****@163.com';   //邮箱地址 
$phpmailer->FromName = 'yanjiadong'; 
$phpmailer->Subject = '欢迎你注册,你的激活邮件'; 
$phpmailer->Body = '请点击进行激活'; 
 
// 添加收件人 
$phpmailer->AddAddress('********@qq.com','用户名'); 
 
// 发信 
 
echo $phpmailer->send()?'ok':'fail';

注意phpmailer组件下载可以百度搜索一下.


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