163的邮件用phpmailer发送(实例详解)
程序员文章站
2022-05-23 21:54:25
复制代码 代码如下:
<?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!";
}
复制代码 代码如下:
<?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!";
}
上一篇: 英国*应成为"大数据"的领头人么?
推荐阅读
-
在codeigniter的helper用phpmailer 发送邮件_PHP教程
-
PHP邮件发送类PHPMailer用法实例详解_PHP
-
在codeigniter的helper用phpmailer 发送邮件_PHP教程
-
phpmailer发送gmail邮件实例详解
-
PHPMailer发送HTML内容、带附件的邮件实例
-
PHP邮件发送类PHPMailer用法实例详解
-
phpmailer发送gmail邮件实例详解
-
ThinkPHP3.2利用QQ邮箱/163邮箱通过PHPMailer发送邮件的方法
-
laravel5.4利用163邮箱发送邮件的步骤详解
-
phpmailer发送gmail邮件实例详解_PHP教程