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

如下,是一个会员到期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));
}
?>

 

相关文章:

  • 2022-12-23
  • 2022-03-05
  • 2021-05-16
  • 2021-05-16
  • 2022-02-09
  • 2021-11-12
  • 2022-01-07
  • 2022-12-23
猜你喜欢
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2021-08-10
  • 2022-12-23
相关资源
相似解决方案