修复拼写错误

This commit is contained in:
aozhiwei 2020-05-21 10:06:22 +08:00
parent ab25222455
commit b00ad21672

View File

@ -85,18 +85,18 @@ class KefuController {
} }
$params = array( $params = array(
'to' => $accountid, 'to' => $accountid,
'game_id' => phpcommon\extractGameId($accountid), 'gameid' => phpcommon\extractGameId($accountid),
'from' => '客服', 'from' => '客服',
'mail_type' => 1, 'mailtype' => 1,
'mail_subtype' => 0, 'mailsubtype' => 0,
'subject' => '领奖', 'subject' => '领奖',
'content' => '领取奖励', 'content' => '领取奖励',
'sendtime' => time(), 'sendtime' => time(),
'ext' => '', 'ext' => '',
'expire_time' => time() + 3600 * 24, 'expiretime' => time() + 3600 * 24,
'attachments' => $this->translateAttachments($config) 'attachments' => $this->translateAttachments($config)
); );
$params['c'] = 'Mail'; $params['c'] = 'MailMgr';
$params['a'] = 'sendMail'; $params['a'] = 'sendMail';
$params['timestamp'] = time(); $params['timestamp'] = time();
$params['sign'] = phpcommon\md5Sign($params, '14e1b600b1fd579f47433b88e8d85291', $params['timestamp']); $params['sign'] = phpcommon\md5Sign($params, '14e1b600b1fd579f47433b88e8d85291', $params['timestamp']);