热搜词
发表于 2011-5-6 16:49:02 | 显示全部楼层 |阅读模式
本帖最后由 灰儿 于 2011-5-6 16:49 编辑

PHPMailer是使用最广泛的发送邮件类,主要应用有:发送留言到管理员邮箱、注册发送邮件激活、忘记密码取回密码………..
使用也比较简单,以前我发过一片使用PHPMailer发送留言到管理员邮箱是文章,今天我讲下在ThinkPHP框架中的配置和应用。
1.首先下载PHPMailer_v5.1
下载地址:http://disk.verycover.com/viewfile.php?file_id=11
2.解压PHPMailer_v5.1文件夹到ThinkPHP/Vendor目录里,PHPMailer_v5.1文件夹更名为PHPMailer
3.在IndexAction.class.php里增加下面的方法

public function mail() {
     header('Content-type:text/html;charset=utf-8');
     vendor("PHPMailer.class#phpmailer"); //从PHPMailer目录导入class.phpmailer.php类文件
     $mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch

$mail->IsSMTP(); // telling the class to use SMTP

try {
  $mail->Host       = "smtp.qq.com"; // SMTP server 部分邮箱不支持SMTP,QQ邮箱里要设置开启的
  $mail->SMTPDebug  = false;        // 改为2可以开启调试
  $mail->SMTPAuth   = true;                  // enable SMTP authentication
  $mail->Host       = "smtp.qq.com"; // sets the SMTP server
  $mail->Port       = 25;                 // set the SMTP port for the GMAIL server
  $mail->CharSet = "UTF-8";            // 这里指定字符集!解决中文乱码问题
  $mail->Encoding = "base64";
  $mail->Username   = "370513625"; // SMTP account username
  $mail->Password   = "密码";        // SMTP account password
  $mail->AddAddress('pingguotu@qq.com', '苹果兔');
  $mail->SetFrom('370513625@qq.com', 'verycover');     //发送者邮箱
  $mail->AddReplyTo('370513625@qq.com', 'verycover'); //回复到这个邮箱
  $mail->Subject = 'helo word';
  $body = "正文sss";
$mail->MsgHTML($body);
  //$mail->AddAttachment('images/phpmailer.gif');      // attachment
// $mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
  $mail->Send();
  echo "Message Sent OK</p>\n";
} catch (phpmailerException $e) {
  echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
  echo $e->getMessage(); //Boring error messages from anything else!
}
}
全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-11-24 20:40 , Processed in 0.150281 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team