PHPMailer邮件发送

引用文件PHPMailerAutoload.php、class.phpmailer.php、class.smtp.php

实例化应用文件index.php

<?php

//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don‘t have access to that
date_default_timezone_set(‘Etc/UTC‘);

require ‘./PHPMailerAutoload.php‘;

//Create a new PHPMailer instance
$mail = new PHPMailer();
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = ‘html‘;
//Set the hostname of the mail server
$mail->Host = "smtp.qq.com";
//Set the SMTP port number - likely to be 25, 465 or 587
$mail->Port = 25;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication
$mail->Username = "###@qq.com";//发送人Email及姓名
//Password to use for SMTP authentication
$mail->Password = "####";;//发送人密码及姓名
//Set who the message is to be sent from
$mail->setFrom(‘####@qq.com‘, ‘First Last‘);//发送人Email及姓名
//Set an alternative reply-to address
$mail->addReplyTo(‘###@qq.com‘, ‘First Last‘);//发送人Email及姓名
//Set who the message is to be sent to
$mail->addAddress(‘###@qq.com‘, ‘John Doe‘);//收件人Email及姓名
//Set the subject line
$mail->Subject = ‘PHPMailer SMTP test‘;
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML("adwawdawd");
//Replace the plain text body with one created manually
$mail->AltBody = ‘This is a plain-text message body‘;
//Attach an image file
//$mail->addAttachment(‘images/phpmailer_mini.png‘);

//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>

发送人的使用qq邮件需要在qq邮箱里面配置qq邮箱的邮件服务器

时间: 2024-10-12 14:54:43

PHPMailer邮件发送的相关文章

phpmailer邮件发送 错误 :SMTP Error: Could not authenticate.

phpmailer邮件发送  错误 :SMTP Error: Could not authenticate. 需要开启SMTP 解决方法:

关于 PHPMailer 邮件发送类的使用心得(含多文件上传)

Is this important for send mail PHPMailer 核心文件 class.phpmailer.php class.phpmaileroauth.php class.phpmaileroauthgoogle.php class.pop3.php class.smtp.php get_oauth_token.php PHPMailerAutoload.php 在使用PHPMailer之前,首先查看PHP环境扩展中是否开启了socket 和openssl扩展,如若没有开

利用phpmailer类邮件发送

<?php require("class.phpmailer.php"); //下载的文件必须放在该文件所在目录 $mail = new PHPMailer(); //建立邮件发送类 $address = "接收方邮箱"; //接收方地址 $mail->IsSMTP(); //使用SMTP方式发送 $mail->Host = "发送者邮箱smtp"; //您的企业邮局域名 $mail->SMTPAuth = true; /

ThinkPHP邮件发送S(Smtp + Mail + phpmailer)

三种邮件发送介绍:(Smtp,Mail以及phpmailer)ThinkPhp 框架下开发. 邮件发送配置先前准备(用该账号做测试用):(这里用新浪邮箱服务器)将自己的新浪邮箱开通 POP3/SMTP服务: 新浪邮箱中  :设置->账户下面的 POP3/SMTP服务 选择开通(然后一步一步完成开通). 客户端html代码: 1 <body> 2 <!--<h1>发送信息测试</h1>--> 3 <div>请输入发送地址(1):<inp

php 邮件发送利器 PHPMailer

php 自带的邮件发送函数已经弱到不能用了. PHPMailer非常的强大. 绝对是php里必须使用的程序. 下载地址: https://github.com/Synchro/PHPMailer 只要这个三个文件 class.phpmailer.php class.smtp.php PHPMailerAutoload.php 然后把 examples\smtp.phps 改吧改吧, 就可以随心所欲发送邮件.

PHPMailer实现PHP邮件发送

1.首先是下载PHPMailer http://code.google.com/a/apache-extras.org/p/phpmailer/ 2.解压 从中取出class.phpmailer.php 和 class.smtp.php 放到你的项目的文件夹,因为我们等下会引用到它们. 3.创建发送邮件的函数,其中你需要配置smtp服务器 function postmail($to,$subject = '',$body = ''){ //Author:Jiucool WebSite: http

利用PHPMailer 来完成PHP的邮件发送 #转载自:大菜鸟在云端#

利用PHPMailer 来完成PHP的邮件发送 1.首先是下载PHPMailer http://code.google.com/a/apache-extras.org/p/phpmailer/ 2.解压 从中取出class.phpmailer.php 和 class.smtp.php 放到你的项目的文件夹,因为我们等下会引用到它们. 3.创建发送邮件的函数,其中你需要配置smtp服务器 function postmail($to,$subject = '',$body = ''){ //$to

阿里云centos 7 创建postfix服务器,并进行stmp验证,并结合phpmailer进行邮件发送

由于centos默认会自带sendmail,而sendmail存在安全性问题和使用复杂的问题,故而选择postfix服务器,由于暂时没有收邮件的需求,故未安装dovecot. 1.[[email protected] ~]# yum remove sendmail -y    #卸载自带的sendmail 2.[[email protected] ~] #yuminstall postfix –y  # 安装postfix服务的主程序包 配置项如下: 1 queue_directory= /va

ThinkPHP中邮件发送功能

初次使用thinkphp框架,开发一个邮件发送功能,由于对框架不熟悉折腾了几个小时终于成功了,以下是代码记录. 此函数只能在ThinkPHP中使用且需要phpmailer扩展的支持:phpmail的下载地址:https://code.google.com/a/apache-extras.org/p/phpmailer 将phpmailer解压后放置扩展放置到第三方类库扩展目录下: ThinkPHP/Extend/Vendor/文件夹下即可,并使用vendor方法来导入.更详细介绍参考:http: