/**
用PHPMailer类来发信
步骤:
0: 引入
1: 实例化
2: 配置属性
3: 调用发送
**/
require('./PHPMailer/class.phpmailer.php');
$phpmailer = new PHPMailer();
/*
设置phpmailer发信用的方式
可用用win下mail()函数来发
可以用linux下sendmail,qmail组件来发
可以利用smtp协议登陆到某个账户上,来发
*/
$phpmailer->IsSMTP(); // 用smtp协议来发
$phpmailer->Host = 'smtp.163.com';
$phpmailer->SMTPAuth = true;
$phpmailer->Username = ''; //发送邮箱的账号(用163邮箱发信的账号)
$phpmailer->Password = ''; //发送邮箱的密码
// 可以发信了
$phpmailer->CharSet='utf-8';
$phpmailer->From = 'never_kill@163.com';
$phpmailer->FromName = 'neverkill';
$phpmailer->Subject = 'Superstart Aseoe';
$phpmailer->Body = '爱思资源网(http://www.aseoe.com/)- 专注前端开发与PHP编程设计.';
//设置收信人
$phpmailer->AddAddress('never_kill@163.com','neverkill');
// 添加一个抄送
$phpmailer->AddCC('597417106@qq.com','Aseoe');
// 发信
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-325-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-325-1.html