Heim  >  Artikel  >  Backend-Entwicklung  >  phpmailer发送yahoo邮件的例子

phpmailer发送yahoo邮件的例子

WBOY
WBOYOriginal
2016-07-25 08:58:171761Durchsuche
本文介绍下,使用phpmailer发送yahoo邮件的例子,有需要的朋友,参考下吧。

PHPMailer类发邮件的例子:

<?php
/**
* phpmailer应用实例
* 发送yahoo邮件
* edit bbs.it-home.org
*/
require_once('../class.phpmailer.php');

$mail= new PHPMailer();

$body= "发送邮件成功";

//采用SMTP发送邮件
$mail->IsSMTP();

//邮件服务器
$mail->Host = "smtp.mail.yahoo.com.cn";
$mail->SMTPDebug  = 0;

//使用SMPT验证
$mail->SMTPAuth   = true;

//SMTP验证的用户名称
$mail->Username   = "********@yahoo.cn";

//SMTP验证的秘密
$mail->Password   = "y*********";

//设置编码格式
$mail->CharSet  = "utf-8";

//设置主题
$mail->Subject    = "测试";

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!";

//设置发送者
$mail->SetFrom('*******@yahoo.cn', 'test');

//采用html格式发送邮件
$mail->MsgHTML($body);

//接受者邮件名称
$mail->AddAddress("*********@yahoo.com", "test");//发送邮件
if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}
?>

需要引入phpmailer类文件,下载地址:PHPMailer邮件发送类V5.1下载地址。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn