当前位置:首页 > PHP教程 > php应用 > 列表

汇总PHPmailer群发Gmail的常见问题

发布:smiling 来源: PHP粉丝网  添加日期:2019-12-04 09:50:59 浏览: 评论:0 

大家在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工具连接到主机。

  1. # 下载到/var/www/php5目录下 
  2.  
  3. cd /var/www/php5 
  4.  
  5. wget http://mirrors.sohu.com/php/php-5.2.14.tar.gz 
  6.  
  7. # 解压 
  8.  
  9. tar zxvf php-5.2.14.tar.gz  
  10.  
  11. # 进入PHP的openssl扩展模块目录  
  12.  
  13. cd php-5.2.14/ext/openssl/ 
  14.  
  15. /var/www/php5/bin/phpize # 这里为你自己的phpize路径,如果找不到,使用whereis phpize查找
  16.  
  17. # 执行后,发现错误 无法找到config.m4 ,config0.m4就是config.m4。直接重命名  
  18.  
  19. mv config0.m4 config.m4  
  20.  
  21. /var/www/php5/bin/phpize 
  22.  
  23. ./configure --with-openssl --with-php-config=/var/www/php5/bin/php-config 
  24.  
  25. make 
  26.  
  27. make install  
  28.  
  29. # 安装完成后,会返回一个.so文件(openssl.so)的目录。在此目录下把openssl.so 文件拷贝到你在php.ini 中指定的 extension_dir 下(在php.ini文件中查找:extension_dir =),我这里的目录是 var/www/php5/lib/php/extensions  
  30.  
  31. # 编辑php.ini文件,在文件最后添加 
  32.  
  33. extension=openssl.so 
  34.  
  35. # 重启Apache即可 
  36.  
  37. /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类哦,代码里没有。

  1. $mail = new PHPMailer(); 
  2.  
  3. $mail->IsSMTP(); 
  4.  
  5. $mail->Host = 'smtp.gmail.com'// 您的企业邮局域名 
  6.  
  7. $mail->SMTPAuth = true; // turn on SMTP authentication 
  8.  
  9. $mail->SMTPSecure = "tls"
  10.  
  11. $mail->Username = '***@gmail.com'
  12.  
  13. $mail->Password = '******'
  14.  
  15. $mail->From = '***'
  16.  
  17. $mail->FromName = '***'
  18.  
  19. $mail->CharSet = 'UTF-8'
  20.  
  21. $mail->Encoding = "base64"
  22.  
  23. $mail->IsHTML(true); // send as HTML 
  24.  
  25. $mail->Subject = '***'//邮件标题 
  26.  
  27. $mail->Body = '***'//邮件内容 
  28.  
  29. $mail->AltBody = "text/html"
  30.  
  31. $mail->AddAddress('***'""); 
  32.  
  33. $mail->Is_SSL = true; 
  34.  
  35. $mail->Port = 587; 
  36.  
  37. if (!$mail->Send()) { 
  38.  
  39.   exit($mail->ErrorInfo); 
  40.  
  41.  
  42. $mail->Smtpclose(); 
  43.  
  44. unset($mail); 

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

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

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

  1. <title>PHPMailer - SMTP (Gmail) basic test</title> 
  2.  
  3.   
  4.  
  5.   
  6.  
  7. <?php 
  8.  
  9. //error_reporting(E_ALL); 
  10.  
  11. error_reporting(E_STRICT); 
  12.  
  13. date_default_timezone_set('America/Toronto'); 
  14.  
  15. require_once('../class.phpmailer.php'); 
  16.  
  17. //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded 
  18.  
  19. $mail = new PHPMailer(); 
  20.  
  21. $body = file_get_contents('contents.html'); 
  22.  
  23. $body = eregi_replace("[\]",'',$body); 
  24.  
  25. $mail->IsSMTP(); // telling the class to use SMTP 
  26.  
  27. $mail->Host = "mail.gmail.com"// SMTP server 
  28.  
  29. $mail->SMTPDebug = 2; // enables SMTP debug information (for testing) 
  30.  
  31. // 1 = errors and messages 
  32.  
  33. // 2 = messages only 
  34.  
  35. $mail->SMTPAuth = true; // enable SMTP authentication 
  36.  
  37. $mail->SMTPSecure = "ssl"// sets the prefix to the servier 
  38.  
  39. $mail->Host = "smtp.gmail.com"// sets GMAIL as the SMTP server 
  40.  
  41. $mail->Port = 465; // set the SMTP port for the GMAIL server 
  42.  
  43. $mail->Username = "***@gmail.com"// GMAIL username 
  44.  
  45. $mail->Password = "***"// GMAIL password 
  46.  
  47. $mail->SetFrom('****@gmail.com''First Last'); 
  48.  
  49. $mail->AddReplyTo("***@gmail.com","First Last"); 
  50.  
  51. $mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic"
  52.  
  53. $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"// optional, comment out and test 
  54.  
  55. $mail->MsgHTML($body); 
  56.  
  57. $address = "***@gmail.com"
  58.  
  59. $mail->AddAddress($address"John Doe"); 
  60.  
  61. $mail->AddAttachment("images/phpmailer.gif"); // attachment 
  62.  
  63. $mail->AddAttachment("images/phpmailer_mini.gif"); // attachment 
  64.  
  65. if(!$mail->Send()) { 
  66.  
  67. echo "Mailer Error: " . $mail->ErrorInfo; 
  68. //phpfensi.com 
  69. else { 
  70.  
  71. echo "Message sent!"
  72.  
  73.  
  74. ?> 

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

Tags: PHPmailer Gmail

分享到: