1、发送站内消息

\Phpcmf\Service::L('Notice')->send_notice_user("任务名称", $uid, [
    'type' => '站内消息类型',
    'url' => '跳转url',
    'mark' => '标记代码'
], [
    'notice' => [
        'tpl_content' => '通知内容',
    ],
]);



2、短信通知

\Phpcmf\Service::L('Notice')->send_notice_user("任务名称", $uid, [], [
     'mobile' => [
        'tpl_content' => '通知内容',
    ],
]);


3、邮件通知

\Phpcmf\Service::L('Notice')->send_notice_user("任务名称", $uid, [], [
    'email' => [
        'tpl_content' => '<title>邮件标题</title>邮件内容',
    ],
]);


4、微信模板消息

\Phpcmf\Service::L('Notice')->send_notice_user("任务名称", $uid, [], [
    'weixin' => [
        'tpl_content' => [
            'id' => '模板消息id',
            'param' => [
                // 模板消息参数数组
            ],
            'url' => '模板消息id',
            
        ],
    ],
]);


文档最后更新时间:2021-09-03 00:12:14
我来修改此文档(1) 不会操作怎么办?