PHP邮件发送(已测试成功)

导语 **用PHPMailer类来发信步骤:0: 引入1: 实例化2: 配置属性3: 调用发送** require(& 39; PHPMailer class phpmailer php& 39;);$phpmailer = new PHPMailer(); *设置phpmailer发信用的方式可用用win下mai

/**
用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');
 
// 发信
 
echo $phpmailer->send()?'ok':'fail';

PHP邮件发送实例下载

PHP查看邮件是否已被阅读

 


http://www.aseoe.com/ true PHP邮件发送(已测试成功) http://www.aseoe.com/show-21-325-1.html report <?php echo strlen($content) / 2; ?> **用PHPMailer类来发信步骤:0: 引入1: 实例化2: 配置属性3: 调用发送** require(& 39; PHPMailer class phpmailer php& 39;);$phpmailer = new PHPMailer(); *设置phpmailer发信用的方式可用用win下mai
TAG:PHP 邮件
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-325-1.html

[前端插件推荐] Plugin

1 2 3 4
  • jQuery实现逐字逐句显示插件l-by-l.min.js
  • jQuery带方向感知的鼠标滑过图片边框特效插件
  • jQuery HotKeys监听键盘按下事件keydown插件
  • 响应式无限轮播jQuery旋转木马插件
响应式无限轮播jQuery旋转木马插件
web前端开发
爱思资源网 Copyright 2012-2014 Www.Aseoe.Com All rights reserved.(晋ICP备13001436号-1)