欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

163的邮件用phpmailer发送(实例详解)

程序员文章站 2024-01-21 12:25:04
复制代码 代码如下:
复制代码 代码如下:

<?php
require_once('../class.phpmailer.php');
$mail= new phpmailer();
$body= "我终于发送邮件成功了!呵呵!<br/><a>http://news.qq.com/a/20111115/000792.htm?qq=0&aduin=594873950&adsession=1321316731&adtag=client.qq.3493_.0</a>";
//采用smtp发送邮件
$mail->issmtp();
//邮件服务器
$mail->host       = "smtp.163.com";
$mail->smtpdebug  = 0;
//使用smpt验证
$mail->smtpauth   = true;
//smtp验证的用户名称
$mail->username   = "********@163.com";
//smtp验证的秘密
$mail->password   = "***";
//设置编码格式
$mail->charset  = "utf-8";
//设置主题
$mail->subject    = "测试";
//$mail->altbody    = "to view the message, please use an html compatible email viewer!";
//设置发送者
$mail->setfrom('****@163.com', 'test');
//采用html格式发送邮件
$mail->msghtml($body);
//接受者邮件名称
$mail->addaddress("***@163.com", "test");//发送邮件
if(!$mail->send()) {
  echo "mailer error: " . $mail->errorinfo;
} else {
  echo "message sent!";
}