PHPMailer

来源:互联网 发布:淘宝有全国统一热线吗 编辑:程序博客网 时间:2024/04/30 16:31
Today ,I encountered a problem.
Since the system of my computer is win7-64 bit, the PHP built-in function mail () can't work.
I want to introduce an open source third party library ,which called "PHPMailer",to you.


The official address:
http://phpmailer.worxware.com/


Old version download address :    
http://sourceforge.net/projects/phpmailer/files/


New version download address :    
http://code.google.com/a/apache-extras.org/p/phpmailer/downloads/list


When your download is complete, you should put the three class.***.php files into the project file.


Instructions for use:


<?php
require("class.phpmailer.php"); //下载的文件必须放在该文件所在目录
$mail = new PHPMailer(); //建立邮件发送类
$address ="youbinliu@126.com";
$mail->IsSMTP(); // 使用SMTP方式发送
$mail->Host = "smtp.qq.com"; // 您的企业邮局域名
$mail->SMTPAuth = true; // 启用SMTP验证功能
$mail->Username = "843831601@qq.com"; // 邮局用户名(请填写完整的email地址)
$mail->Password = "***********"; // 邮局密码
$mail->Port=25;
$mail->From = "843831601@qq.com"; //邮件发送者email地址
$mail->FromName = "liuyoubin";
$mail->AddAddress("$address", "a");//收件人地址,可以替换成任何想要接收邮件的email信箱,格式是AddAddress("收件人email","收件人姓名")
//$mail->AddReplyTo("", "");
 
//$mail->AddAttachment("/var/tmp/file.tar.gz"); // 添加附件
//$mail->IsHTML(true); // set email format to HTML //是否使用HTML格式


$mail->Subject = "PHPMailer测试邮件"; //邮件标题
$mail->Body = "Hello,这是测试邮件"; //邮件内容
$mail->AltBody = "This is the body in plain text for non-HTML mail clients"; //附加信息,可以省略
 
if(!$mail->Send())
{
echo "邮件发送失败. <p>";
echo "错误原因: " . $mail->ErrorInfo;
exit;
}
echo "邮件发送成功";




The open source third party library. When helping us a lot , its defect is low efficiency.
原创粉丝点击