码迷,mamicode.com
首页 >  
搜索关键字:phpmailer phpexcell    ( 194个结果
菜鸟创业记--第五天
在被窝里做记录,今天周末,最幸福的一天,不用担心明天早起,最幸福的是在弟弟家睡觉,不用担心冷的问题,人其实很好满足。用手机编辑超级累,简单记录下今天的成果,注册激活邮件搞定了,用的是PHPMailer,和ThinkPHP结合的非常完美,用户表中又加了几个字段,慢慢完善,前台..
分类:其他好文   时间:2014-12-13 06:20:32    阅读次数:166
ThinkPHP 3.2使用PHPMailer发送邮件
首先你需要下载最新版的phpmailer,然后添加至TP的第三方类库包目录,如下图第二步在config.php添加如下代码。这样就可以让第三步的函数获取phpmailer的配置信息了'smtp.exmail.qq.com', 'MAIL_SMTPAUTH' =>TRUE, //启用smtp认证 'M...
分类:Web程序   时间:2014-12-10 19:31:09    阅读次数:235
PHP中发邮件
测试代码 <?php header('Content-Type: text/xml; charset=utf-8'); require_once('./PHPMailer-master/class.phpmailer.php'); function sendMail() { $mail = new PHPMailer(); //采用SMTP发送邮件 $mail-...
分类:Web程序   时间:2014-11-30 16:56:21    阅读次数:198
phpmailer用smtp发送邮件
<?php//error_reporting(E_ALL);error_reporting(E_STRICT);date_default_timezone_set(‘America/Toronto‘);//date_default_timezone_set(date_default_timezone_get());include_once(‘../class.phpmailer.php‘);//include("class.smtp.php");//optional,getscalledfromwith..
分类:Web程序   时间:2014-11-21 16:32:30    阅读次数:216
phpmailer 发送邮件
IsSMTP();$phpmailer->Host = 'smtp.163.com';$phpmailer->SMTPAuth =true;$phpmailer->CharSet = 'utf8';$phpmailer->Username ='15136122762';$phpmailer->Pas...
分类:Web程序   时间:2014-11-20 15:01:41    阅读次数:185
ThinkPHP中使用PHPMailer邮件类
第一步、添加PHPMailer类库将下载后的文件解压,将PHPMail目录移动至ThinkPHP目录中的Vendor内。(请确保class.phpmailer.php文件就在ThinkPHP\Vendor\PHPMailer\class.phpmailer.php)第二步、添加发送邮件函数在项目目录...
分类:Web程序   时间:2014-11-18 23:25:34    阅读次数:179
phpmailer使用方法
第一,需要下载PHPMailer文件包phpmailer. http://phpmailer.sourceforge.net/第二,确认你的服务器系统已经支持socket ,通过phpinfo();查看是否支持sockets(socket 是属于PHP扩展部分),如果显现为“enabled”,那就是...
分类:Web程序   时间:2014-11-11 18:53:18    阅读次数:257
DEDE使用AJAX无刷新提交Form表单,PHP返回结果
$query = "INSERT INTO `{$diy->table}` (`id`, `ifcheck` $addvar)  VALUES (NULL, 0 $addvalue); "; 引入phpmailer 添加以下代码: /*发送邮件*/ $addvalue_ary = explode(',', $addvalue); //因为DEDE是将所有表单数据提交过来,所...
分类:Web程序   时间:2014-10-29 21:38:13    阅读次数:321
怎么使用PHPMailer实现邮件的发送??
来源:http://www.ido321.com/1103.html 发送邮件是常用的功能,LZ今天在项目中也碰到了,特此分享一下。 首先,去下载PHPMailer 1、https://github.com/dwqs/PHPMailer 2、http://download.csdn.net/detail/u011043843/8063583 下载之后,将文件解压到项目目录的对应位置,将class.phpmailer.php和class.smtp.php引入项目中,看代码:(解压的文件不要删除,否则...
分类:Web程序   时间:2014-10-26 06:51:38    阅读次数:221
怎么使用PHPMailer实现邮件的发送??
来源:http://www.ido321.com/1103.html发送邮件是常用的功能,LZ今天在项目中也碰到了,特此分享一下。首先,去下载PHPMailer1、https://github.com/dwqs/PHPMailer2、http://download.csdn.net/detail/u...
分类:Web程序   时间:2014-10-26 06:44:16    阅读次数:250
194条   上一页 1 ... 15 16 17 18 19 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!