您好,欢迎访问一九零五行业门户网

汇总PHPmailer群发Gmail的常见问题_PHP

大家在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/php5wget 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-configmakemake 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 testissmtp(); // 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); // attachmentif(!$mail->send()) {echo mailer error: . $mail->errorinfo;} else {echo message sent!;}?>
以上就是本文的全部内容,希望对大家的学习有所帮助。
其它类似信息

推荐信息