首先,主要是ecmall使用的phpmailer版本太低,不支持加密连接。然后,得对相应代码做一定调整。1.
覆盖phpmailer请从附件进行下载:http://files.cnblogs.com/x3d/ecmall_phpmailer_lib.zip2.
改造lib涉及到两个lib:mail....
分类:
其他好文 时间:
2014-05-27 01:55:57
阅读次数:
268
PHPMailer配置清单如下:require_once
‘class.phpmailer.php‘;$receiver = ”;$mail =newPHPMailer(
);$mail->IsSMTP();$mail->IsHTML( true );$mail->CharSet= “GB2312″...
分类:
Web程序 时间:
2014-05-26 21:52:38
阅读次数:
404
在本地搭建了服务器,新用户注册时显示不能使用mail()函数,于是百度,照着别人的教程改,结果还是不行。捯饬了很久才弄好,下面是完整方法。1.打开wordpress\wp-includes\pluggable.php1)
注释下面一行// $phpmailer->From = apply_filte...
分类:
其他好文 时间:
2014-05-09 09:53:36
阅读次数:
422
###近期的一个小项目中需要用到邮件自动通知功能,搜了搜,发现phpmailer这个东西大家用的挺多的。1.
首先去sourceforge下载[phpmailer][1],也可去我的[网盘][2]下载,我用的是5.1版本的。2.
看到phpmailer目录下有三个class文件,这便是phpmail...
分类:
Web程序 时间:
2014-05-01 07:19:22
阅读次数:
376