大家在PHPmailer群发Gmail时会遇到许多常见问题,下面为大家总结了一些常见问题,希望对大家的学习有所帮助。

1.Could not authenticate

首先,如果你没有使用循环的话,基本上就是账号或者密码错了;

如果使用循环来群发,send()方法结束之后记得调用Smtpclose(),发一次关一次,否则就会出现只能发一封邮件,第二次就崩溃的情况。

2.Gmail

首先,开启php的ssl权限

php开启openssl的方法,大多数情况下openssl是没有开启的,要想启用需要进行下简单的设置:

windows下开启方法:

1: 首先检查php.ini中;extension=php_openssl.dll是否存在, 如果存在的话去掉前面的注释符‘;', 如果不存在这行,那么添加extension=php_openssl.dll。

2: 讲php文件夹下的: php_openssl.dll, ssleay32.dll, libeay32.dll 3个文件拷贝到 WINDOWS\system32\  文件夹下。

3: 重启apache或者iis

至此,openssl功能就开启了。

Linux下开启方法:

我使用的是锦尚数据的云主机,PHP版本:5.2.14

下面方案就以我的主机为例讲解为PHP添加openssl模块支持。

网上一些答案说要重新编译PHP,添加configure参数,增加openssl的支持。这里讲一个不需要重新编译的方法。

如果服务器上存在PHP安装包文件最好,如果已经删除,去下载和phpinfo页面显示版本一样的PHP安装文件,我这里是 php-5.2.14.tar.gz

推荐去搜狐镜像下载,网易镜像没有找到。地址为: http://mirrors.sohu.com/php/

用ssh工具连接到主机。

# 下载到/var/www/php5目录下

cd /var/www/php5

wget http://mirrors.sohu.com/php/php-5.2.14.tar.gz

# 解压

tar zxvf php-5.2.14.tar.gz

# 进入PHP的openssl扩展模块目录

cd php-5.2.14/ext/openssl/

/var/www/php5/bin/phpize # 这里为你自己的phpize路径,如果找不到,使用whereis phpize查找

# 执行后,发现错误 无法找到config.m4 ,config0.m4就是config.m4。直接重命名

mv config0.m4 config.m4

/var/www/php5/bin/phpize

./configure --with-openssl --with-php-config=/var/www/php5/bin/php-config

make

make install

# 安装完成后,会返回一个.so文件(openssl.so)的目录。在此目录下把openssl.so 文件拷贝到你在php.ini 中指定的 extension_dir 下(在php.ini文件中查找:extension_dir =),我这里的目录是 var/www/php5/lib/php/extensions

# 编辑php.ini文件,在文件最后添加

extension=openssl.so

# 重启Apache即可

/usr/local/apache2/bin/apachectl restart

好了,现在就成功添加openssl支持。

但是,Gmail麻烦的地方可不止这样,Gmail现在的smtp和pop3都是ssl加密的

Step1. php openssl module(extension) support

Step2. download phpmailer library

Step3. change code 'class.phpmailer.php' and 'class.smtp.php'

1.phpmailer和smtp里加property Is_SSL

public $Is_SSL = false;

2.phpmailer里的SmtpConnect方法里传递给smtp对象

$this->smtp-> Is_SSL = $this-> Is_SSL ;

3.smtp里的Connect方法在fsockopen调用前加上

if($this->is_ssl){ $host = 'ssl://'.$host; }

最后是使用方法,记得调用phpmailer类哦,代码里没有。

$mail = new PHPMailer();

$mail->IsSMTP();

$mail->Host = 'smtp.gmail.com'; // 您的企业邮局域名

$mail->SMTPAuth = true; // turn on SMTP authentication

$mail->SMTPSecure = "tls";

$mail->Username = '***@gmail.com';

$mail->Password = '******';

$mail->From = '***';

$mail->FromName = '***';

$mail->CharSet = 'UTF-8';

$mail->Encoding = "base64";

$mail->IsHTML(true); // send as HTML

$mail->Subject = '***'; //邮件标题

$mail->Body = '***'; //邮件内容

$mail->AltBody = "text/html";

$mail->AddAddress('***', "");

$mail->Is_SSL = true;

$mail->Port = 587;

if (!$mail->Send()) {

exit($mail->ErrorInfo);

}

$mail->Smtpclose();

unset($mail);

代码部分就这些,还有不要忘记在gmail中做好相应的设置哦。

以上三步完成,就可以自由的用phpmailer来发送gmail邮件了。

再为大家分享一个phpmailer发送gmail邮件实例:

PHPMailer - SMTP (Gmail) basic test

//error_reporting(E_ALL);

error_reporting(E_STRICT);

date_default_timezone_set('America/Toronto');

require_once('../class.phpmailer.php');

//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail = new PHPMailer();

$body = file_get_contents('contents.html');

$body = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP

$mail->Host = "mail.gmail.com"; // SMTP server

$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)

// 1 = errors and messages

// 2 = messages only

$mail->SMTPAuth = true; // enable SMTP authentication

$mail->SMTPSecure = "ssl"; // sets the prefix to the servier

$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server

$mail->Port = 465; // set the SMTP port for the GMAIL server

$mail->Username = "***@gmail.com"; // GMAIL username

$mail->Password = "***"; // GMAIL password

$mail->SetFrom('****@gmail.com', 'First Last');

$mail->AddReplyTo("***@gmail.com","First Last");

$mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";

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

$mail->MsgHTML($body);

$address = "***@gmail.com";

$mail->AddAddress($address, "John Doe");

$mail->AddAttachment("images/phpmailer.gif"); // attachment

$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

if(!$mail->Send()) {

echo "Mailer Error: " . $mail->ErrorInfo;

} else {

echo "Message sent!";

}

?>

以上就是本文的全部内容,希望对大家的学习有所帮助。

php发送gmail,汇总PHPmailer群发Gmail的常见问题相关推荐

  1. php模拟gmail发信,PHP 利用Gmail发送邮件

    系统环境:windows7+wamp5 环境要求:Gmail账号+open_ssl+PHPMailer: 1.默认情况下wamp5是没有打开Open_ssl的,这是需要修改php.ini,将exten ...

  2. php使用gmail发送邮件,PHP使用gmail发邮件

    实验室要举办一个会议,要我做一个会议的网站.使用了开源的openconf,十分省事.但发邮件简单的使用了PHP的mail函数,没有经过SMTP认证,发送的邮件很可能出现在对方的垃圾箱里,甚至会被退信. ...

  3. 2022邮箱如何发送群发邮件?邮件群发平台软件哪个好?一文get群发小技巧

    生活处处有惊喜,软件APP功能处处都有小技巧 相信因为疫情有好多人都和我一样居家办公,这是就对电脑的硬件以及工作中经常使用的一些软件的要求就比较高了,比如邮箱的容量,发信速度等等都可能影响和同事客户的 ...

  4. Apple邮箱配置QQ邮箱,163邮箱,edu邮箱,gmail邮箱,获取gmail日历

    Apple邮箱配置QQ邮箱,163邮箱,edu邮箱,gmail邮箱,获取gmail日历 基本思路可以照着这个教程来: 03 如何充分使用iOS自带的"邮件"?--iPhone宝藏A ...

  5. 东方梦符祭服务器无响应,东方梦符祭常见问题汇总 东方梦符祭常见问题解决方案...

    东方梦符祭常见问题汇总 东方梦符祭常见问题解决方案 2018-05-08 11:05:03来源:游戏下载编辑:苦力趴评论(0) 东方梦符祭是一款在DOTA2上的自定义地图,吸引了大量的玩家,即使是以前 ...

  6. java gmail 发送邮件_Java通过Gmail发送电子邮件

    大家好,我刚刚尝试获取一些Java代码,以通过gmail向Java用户发送电子邮件,这就是我所拥有的: @ManagedBean @ViewScoped public class email { // ...

  7. gmail imap_阻止带有Gmail IMAP的Outlook在待办事项栏中显示重复的任务

    gmail imap If you are using Outlook with Gmail over IMAP, you might have noticed a really annoying p ...

  8. android gmail软件,App for Gmail

    App for Gmail是一款功能强大,并且完全免费为大家提供最优质的邮件发送通信的工具.用App for Gmail可以随时接受重要的邮件,不会耽误自己的工作,不会错过重要的文件或其他资料,非常好 ...

  9. php 126怎么设置发送邮箱验证码,phpmailer发送网易126邮箱的例子

    本文介绍下,使用phpmailer发送网易126.com邮件的例子,有需要的朋友参考下. 使用PHPMailer类发邮件的例子: IsSMTP(); //邮件服务器 $mail->Host = ...

最新文章

  1. vuex刷新页面数据丢失怎么解决_vuex状态机浅谈
  2. Git 2.25.0 发布,新特性:部分 clone 与稀疏 checkout
  3. 开灯问题java小结_n个灯,k个人的开灯问题java实现
  4. thinkphp 在接口开发或者接入三方时解决跨域
  5. springboot怎么杀进程_线上服务平均响应时间太长,怎么排查?
  6. [jzoj 5775]【NOIP2008模拟】农夫约的假期 (前缀和+递推)
  7. ubuntu文件右下角有锁的图标
  8. 艾伦·图灵天才的一生,为什么却蒙羞而死?这是被时代所亏欠的一生!
  9. 终极邮件搜索群发大师 v3.47 绿色
  10. 你不会因为实施了Scrum而变敏捷
  11. python中histogram_python – 了解Pillow中的histogram()
  12. yigo项目中使用的函数
  13. Excel2003常用快捷键
  14. 解密seata全局锁(一)
  15. 基于Spring+SpringMVC+MyBatis博客系统的开发教程(十六)
  16. 同济子豪兄github_【B站UP主-同济子豪兄】华为云ModelArts零代码开发病虫害识别应用...
  17. JAVA:获取用户访问ip地址
  18. Halcon与C#混合编程--打开笔记本摄像头实时采集
  19. 基于MATLAB的路面裂缝检测识别算法仿真
  20. python的字典生成工具

热门文章

  1. 第一章 软件开发入门引导及概述
  2. 深入理解OkHttp3:(六)Https
  3. 文本文档打开来是写字板怎么办
  4. opencv根据摄像头名称打开摄像头(附源码)
  5. linux uac 设备,USB Audio Class (UAC) 分析
  6. 用lombok插件,驼峰属性第一个是一个字母的,属性没有接收到值,使用@JsonProperty解决(工作遇到的坑)
  7. odoo12:上传图片,默认显示图标
  8. [TCP/IP] 基础知识总结
  9. 88e1111的1000base-x to copper(GBIC)配置及使用
  10. Detectron2的使用指南