资源简介
ThinkPHP31.3发送邮件,最简单的应用例子,主要看配置,配置自己的服务器邮箱(配置前设置服务器邮箱开通smtp服务)内含windows定时发送的方法。
代码片段和文件信息
/***********************************************************************
Copyright 2006-2007 Ma Bingyao
These sources is free software. Redistributions of source code must
retain the above copyright notice. Redistributions in binary form
must reproduce the above copyright notice. You can redistribute it
freely. You can use it with any free or commercial software.
These sources is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY. Without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
You may contact the author by:
e-mail: andot@coolcode.cn
*************************************************************************/
#ifdef HAVE_CONFIG_H
#include “config.h“
#endif
#include “php.h“
#if HAVE_XXTEA
#include “php_xxtea.h“
#include “ext/standard/info.h“ /* for phpinfo() functions */
#include “xxtea.h“
/* compiled function list so Zend knows what‘s in this module */
zend_function_entry xxtea_functions[] =
{
ZEND_FE(xxtea_encrypt NULL)
ZEND_FE(xxtea_decrypt NULL)
ZEND_FE(xxtea_info NULL)
{NULL NULL NULL}
};
/* compiled module information */
zend_module_entry xxtea_module_entry =
{
STANDARD_MODULE_HEADER
XXTEA_MODULE_NAME
xxtea_functions
ZEND_MINIT(xxtea)
ZEND_MSHUTDOWN(xxtea)
NULL
NULL
ZEND_MINFO(xxtea)
XXTEA_VERSION
STANDARD_MODULE_PROPERTIES
};
/* implement standard “stub“ routine to introduce ourselves to Zend */
#if defined(COMPILE_DL_XXTEA)
ZEND_GET_MODULE(xxtea)
#endif
static xxtea_long *xxtea_to_long_array(unsigned char *data xxtea_long len int include_length xxtea_long *ret_len) {
xxtea_long i n *result;
n = len >> 2;
n = (((len & 3) == 0) ? n : n + 1);
if (include_length) {
result = (xxtea_long *)emalloc((n + 1) << 2);
result[n] = len;
*ret_len = n + 1;
} else {
result = (xxtea_long *)emalloc(n << 2);
*ret_len = n;
}
memset(result 0 n << 2);
for (i = 0; i < len; i++) {
result[i >> 2] |= (xxtea_long)data[i] << ((i & 3) << 3);
}
return result;
}
static unsigned char *xxtea_to_byte_array(xxtea_long *data xxtea_long len int include_length xxtea_long *ret_len) {
xxtea_long i n m;
unsigned char *result;
n = len << 2;
if (include_length) {
m = data[len - 1];
if ((m < n - 7) || (m > n - 4)) return NULL;
n = m;
}
result = (unsigned char *)emalloc(n + 1);
for (i = 0; i < n; i++) {
result[i] = (unsigned char)((data[i >> 2] >> ((i & 3) << 3)) & 0xff);
}
result[n] = ‘\0‘;
*ret_len = n;
return result;
}
static unsigned char *php_xxtea_encrypt(unsigned char *data xxtea_long len unsigned char *key xxtea_long *ret_len) {
unsigned char *result;
xxtea_long *v *k v_len k_len;
v = xxtea_to_long_array(data len 1 &v_len);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\
文件 68 2014-09-26 15:37 TP发送邮件+系统计划定时发送\sendMail.bat
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\
文件 34 2014-07-31 10:22 TP发送邮件+系统计划定时发送\sendMailByTime\.gitignore
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Common\
文件 1181 2014-05-05 12:17 TP发送邮件+系统计划定时发送\sendMailByTime\App\Common\common.php
文件 0 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Common\index.html
文件 2006 2014-09-26 15:39 TP发送邮件+系统计划定时发送\sendMailByTime\App\Common\RecordEntity.php
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Conf\
文件 1338 2014-09-26 15:42 TP发送邮件+系统计划定时发送\sendMailByTime\App\Conf\config.php
文件 696 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Conf\config_bae.php
文件 662 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Conf\config_sae.php
文件 103 2014-05-04 13:35 TP发送邮件+系统计划定时发送\sendMailByTime\App\Conf\tags.php
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Action\
文件 2636 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Action\IndexAction.class.php
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Behavior\
文件 0 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Behavior\index.html
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Model\
文件 0 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Model\index.html
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\ORG\
文件 20484 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\ORG\Image.class.php
文件 17820 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\ORG\UploadFile.class.php
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Widget\
文件 0 2014-03-31 17:48 TP发送邮件+系统计划定时发送\sendMailByTime\App\Lib\Widget\index.html
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Modules\
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Modules\Index\
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Modules\Index\Action\
文件 3158 2014-09-27 09:20 TP发送邮件+系统计划定时发送\sendMailByTime\App\Modules\Index\Action\IndexAction.class.php
目录 0 2014-09-28 15:33 TP发送邮件+系统计划定时发送\sendMailByTime\App\Modules\Index\Conf\
............此处省略2543个文件信息
相关资源
- PHP网络点餐系统源码整套完整 网上点
- 众大云采集phpcms v9.6.5.zip
- WikyBlog v1.7.3 RC2 多国语言版.rar
- PHPCMS2008黄页模块UTF-8测试版
- 齐享云php开源网盘源码 v1.0.zip
- 新之站PHPwind采集器.rar
- ThinkPHP5.0-快速入门手册(新手教程版
- php个人博客源码
- PHP学生信息管理系统课程设计
- php旅游网站毕业设计程序
- 上海交通大学校友会php源码
- php旅游网站
- PHP利用纯真IP数据库在本地实现IP地址
- 5个php项目代码,适合初学者
- 最新版PHP域名授权验证更新系统 v2.
- Linux下部署php环境搭建
- 基于PHP+MYSQL+APACHE的人事管理系统美工
- 采集发贴论坛王 php168采集器
- PHP上百个常用功能函数.zip
- PHP网上购物系统毕业设计和毕业论文
- 皇家墨尔本理工大学Web Programming教材
- Thinkphp5内核素材解析源码-支持20+多家
- 基于thinkphp的cms2系统
- 同学录系统PHP源代码
- php告白墙源码期末作业小项目.zip
- php后台管理内含数据库,源码,说明
- PHP-温湿度数据定时刷新及可视化显示
- 基于PHP音乐网站系统的开发与设计
- Thinkphp内核素材解析源码 支持20多家素
- 基于think PHP5 .0 vue2.0 QueryList爬虫的淘
评论
共有 条评论