小程序模板消息(PHP)

public function sendTemplateMsg($user_id)
{
    $appid  = 'wx6de91caa27fe';
    $secret = '35603e3370c8f2e3cb1bb8884d';
    $user_info = M('users')->field('openid,form_id')->where(['user_id'=>$user_id])->find();   //form_id 由小程序前端提供

    $ACCESS_TOKEN = $this->get_ACCESS_TOKEN($appid,$secret);
    $url = "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=$ACCESS_TOKEN"; 

    $data=array('touser'=>$user_info['openid'],   //发给谁
                'template_id'=>'vFo4Nx-exsziMg09stAVTnfuArFK-ZvN-AFlmn9Fj6s',   //订单发货提醒
                'page'=> 'pages/index/index',
                'form_id'=>$user_info['form_id'],
                'data'=>array(
                    'keyword1'=>array(
                        'value'=>'12341234',    // 订单号
                        'color'=>'#173177'
                    ),
                    'keyword2'=>array(
                        'value'=>'12点30分',  //发货时间
                        'color'=>'#173177'
                    ),
                    'keyword3'=>array(
                        'value'=>'口红',  //产品名
                        'color'=>'#173177'
                    ),
                    'keyword4'=>array(
                        'value'=>'11111111111',
                        'color'=>'#173177'
                    )
                )
      );
    $data = json_encode($data);
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $tmpInfo = curl_exec($ch);
    if (curl_errno($ch))
    {
        return curl_error($ch);
    }
    curl_close($ch);

    return $tmpInfo;
}


//获取token
public function get_ACCESS_TOKEN($appid,$secret)
{
    $data = json_decode(file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret")) ;
    return $data->access_token;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值