电话
13363039260
以插件Myapp为例
1、定义自己的提醒方法
在App中新建dayrui/App/Myapp/Config/Notice.php
<?php
/**
* 通知动作注册配置
*
* 动作字符 => 动作名称
*
**/
return [
'tixing' => '[app插件]提醒通知测试一下',
];
2、切换到后台用户设置里面,通知设置
这里出现了你的定义方法了
3、发送提醒语法
在(2)中需要配置内容,进行内容设置,内容设置的变量取决于下面你传递的变量。
发送提醒语法:
$data = [
'uid' => 1,
'username' => 'admin',
];
\Phpcmf\Service::L('Notice')->send_notice('tixing', $data);
提醒字符串就是上面的:tixing
注意这里的$data数组,必须传入参数
这两个是必填的,否则不知道发给谁,定义好uid之后,这个提醒内容就发送给他了
4、设计提醒模板
a、短信和消息 /config/notice/mobile/tixing.html
模板教程:https://www.xunruicms.com/doc/479.html
b、邮件 /config/notice/email/tixing.html
模板教程:https://www.xunruicms.com/doc/480.html
c、微信 /config/notice/weixin/tixing.html
模板教程:https://www.xunruicms.com/doc/481.html
模板变量获取方式:https://www.xunruicms.com/doc/482.html