解析php中用PHPMailer来发送邮件的示例(126.com的例子)
程序员文章站
2022-05-11 17:48:24
<?php
require_once('../class.phpmailer.php');
$mail= new phpmailer();
$body= "我终于发送邮件成功了!呵呵!goodboy xxxxxxx!<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.126.com";
$mail->smtpdebug = 0;
//使用smpt验证
$mail->smtpauth = true;
//smtp验证的用户名称
$mail->username = "xxxxxxx@126.com";
//smtp验证的秘密
$mail->password = "password";
//设置编码格式
$mail->charset = "utf-8";
//设置主题
$mail->subject = "测试";
//$mail->altbody = "to view the message, please use an html compatible email viewer!";
//设置发送者
$mail->setfrom('xxxxxxx@126.com', 'test');
//采用html格式发送邮件
$mail->msghtml($body);
//接受者邮件名称
$mail->addaddress("xxxxxxx@126.com", "test");//发送邮件
if(!$mail->send()) {
echo "mailer error: " . $mail->errorinfo;
} else {
echo "message sent!";
}
require_once('../class.phpmailer.php');
$mail= new phpmailer();
$body= "我终于发送邮件成功了!呵呵!goodboy xxxxxxx!<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.126.com";
$mail->smtpdebug = 0;
//使用smpt验证
$mail->smtpauth = true;
//smtp验证的用户名称
$mail->username = "xxxxxxx@126.com";
//smtp验证的秘密
$mail->password = "password";
//设置编码格式
$mail->charset = "utf-8";
//设置主题
$mail->subject = "测试";
//$mail->altbody = "to view the message, please use an html compatible email viewer!";
//设置发送者
$mail->setfrom('xxxxxxx@126.com', 'test');
//采用html格式发送邮件
$mail->msghtml($body);
//接受者邮件名称
$mail->addaddress("xxxxxxx@126.com", "test");//发送邮件
if(!$mail->send()) {
echo "mailer error: " . $mail->errorinfo;
} else {
echo "message sent!";
}
推荐阅读
-
解析php中用PHPMailer来发送邮件的示例(126.com的例子)
-
解析yahoo邮件用phpmailer发送的实例_PHP教程
-
解析php中用PHPMailer来发送邮件的示例(126.com的例子)_PHP教程
-
PHPMailer使用Gmail来发送邮件的连接smtp服务器错误_PHP教程
-
利用PHPMailer 来完成PHP的邮件发送 #转载自:大菜鸟在云端#
-
利用PHPMailer 来完成PHP的邮件发送 #转载自:大菜鸟在云端#
-
利用PHPMailer 来完成PHP的邮件发送 #转载自:大菜鸟在云端#,_PHP教程
-
利用PHPMailer 来完成PHP的邮件发送 #转载自:大菜鸟在云端#,
-
解析php中用PHPMailer来发送邮件的示例(126.com的例子)_php技巧
-
解析yahoo邮件用phpmailer发送的实例_php实例