V2.0 - 私信通知
yoyocmf 2020-08-20 20:43:52

1、发送私信

/**
* 创建一条信息(私信)
* @param string $content 私信内容
* @param int $sender_id 发送人的用户id
* @param int $receiver 接收人的用户id
* @param string $title 私信标题,一般都是没有的
* @return bool
*/

PHP Code复制内容到剪贴板
  1. $sendResult = \Yii::$app->services->notify->createMessage($content, 1, $userId);  
  2.                             if(!$sendResult){  
  3.                                 // 发送失败 do something  
  4.                             }else{  
  5.                                 // 发送成功 do something  
  6.                             }  

 

 

 

本文来自于:http://www.yoyo88.cn/note/yoyocmf/537.html

Powered by yoyo苏ICP备15045725号