123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- */
- // +---------------------------------------------------------------------+
- // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ] |
- // +---------------------------------------------------------------------+
- // | Copy right 2019-2029 www.niucloud.com |
- // +---------------------------------------------------------------------+
- // | Author | NiuCloud <niucloud@outlook.com> |
- // +---------------------------------------------------------------------+
- // | Repository | https://github.com/niucloud/framework.git |
- // +---------------------------------------------------------------------+
- declare (strict_types = 1);
- namespace app\event;
- use app\model\member\Member;
- /**
- * 登录成功发送通知
- */
- class MessageMemberPayPassword
- {
- public function handle($param)
- {
- //发送订单消息
- if($param["keywords"] == "MEMBER_PAY_PASSWORD"){
- $member_model = new Member();
- $result = $member_model->paypasswordCode($param);
- return $result;
- // TODO 发送订单消息
- }
- }
-
- }
|