You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
455 B
16 lines
455 B
<?php
|
|
|
|
return [
|
|
'sender' => \App\Libraries\Sms\Tencent::class,
|
|
'type' => 'tencent',
|
|
//'debug' => env('SMS_DEBUG'),
|
|
'tencent' => [
|
|
'sms_sdk_app_id'=> env('SMS_SDK_APP_ID'),
|
|
'secret_id' => env('SECRET_ID'),
|
|
'secret_key' => env('SECRET_KEY'),
|
|
'sign_name' => '领峰远扬',
|
|
'templates' => [
|
|
'bidding' => '1100494' //{1}参与了您发起的竞标{2},详情请登录{3}查看。
|
|
]
|
|
]
|
|
];
|