zoukankan      html  css  js  c++  java
  • destoon-类似会员30天到期提醒模板消息实现

    这类模板消息可以利用系统的计划任务,定时执行通知

    如下,是一个会员到期30天的计划任务

    <?php
    defined('IN_DESTOON') or exit('Access Denied');
    $atime = strtotime(date("Y-m-d"),time())+2592000;
    $btime = strtotime(date("Y-m-d"),time())+2678400;
    $result = DB::query("SELECt username,totime FROM ".DT_PRE."company WHERe totime between $atime and $btime");
    $g7 = cache_read('group-7.php');
    while($r = DB::fetch_array($result)) {
        $todate = date("Y-m-d",$r['totime']);
        $par = $arr = array();
        $arr['first']['value'] = '网站会员服务到期提醒';
        $arr['keyword1']['value'] = 'VIP会员';
        $arr['keyword2']['value'] = 'VIP会员服务';
        $arr['keyword3']['value'] = $todate;
        $arr['keyword4']['value'] = $g7['fee'].'元/年';
        $arr['remark']['value'] = '点击“详情”进入网站立即续费';
    
        $par['username'] = $r['username'];
        $par['template_id'] = 'uiUglueraB2bYCaOyufJerPbahh-u5nXKKdqdyDoJmk';
        $par['url'] = $EXT['mobile_url'];
        $par['topcolor'] = '#FF0000';
        $par['data'] = $arr;
        echo dcurl(DT_PATH.'/api/weixin/send.php', 'auth='.encrypt(json_encode($par), DT_KEY.'WXTS', 60));
    }
    ?>
  • 相关阅读:
    Linux_vi编辑器
    Linux_几个符号命令
    Linux_权限
    Linux_用户/用户组
    Linux_文件及文件夹[创建][复制][移动][删除][重命名]
    Linux_文件查看
    Linux_初识
    码农网站
    学习网站
    软件设计师考试范围
  • 原文地址:https://www.cnblogs.com/lx0715/p/9946859.html
Copyright © 2011-2022 走看看