Commit 4822f4d975506b568f317628603b2ad92980a388

Authored by xu
1 parent 2d7ef193
Exists in master

common(v1.0.0 build 4)

1. F 短信模板调整
common/config/params.php
1 1 <?php
2 2 return [
3 3 'adminEmail' => 'admin@example.com',
4   - 'supportEmail' => 'support@example.com',
5 4 'user.passwordResetTokenExpire' => 3600,
6   - 'VERSION' => 'v1.0.0 build 3'
  5 + 'VERSION' => 'v1.0.0 build 4'
7 6 ];
... ...
domain/system/SmsMessage.php
... ... @@ -116,13 +116,13 @@ class SmsMessage
116 116 }
117 117  
118 118 /*
119   - * 模版CODE: SMS_181851842
120   - * 【XX车管家】您好,xxxx厂已对您的车维修完成,点击http://wwwwwww.com/xxx 可以给本次服务评分。如有意见请拨打投诉热线:4000xxxxxx”
  119 + * 模版CODE: SMS_181853499
  120 + * 【XX车管家】尊敬的车主,您的爱车正在${maintainer}维修,预计${dateTime}维修完成,预估维修内容:${repairPlan},预估维修费:${repairPrice},维修厂地址:${address},联系电话:${tel}
121 121 * */
122 122 public function sendFinishInfo($phone, $postData)
123 123 {
124 124 //return true;
125 125 $signName = $this->getSignName();
126   - return $this->send($phone, $signName, "SMS_181851842", $postData);
  126 + return $this->send($phone, $signName, "SMS_181853499", $postData);
127 127 }
128 128 }
129 129 \ No newline at end of file
... ...