SMS.json 957 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. // 短信配置
  4. "SMS": {
  5. // 阿里云短信
  6. "Aliyun": {
  7. "AccessKeyId": "",
  8. "AccessKeySecret": "",
  9. "Templates": [
  10. {
  11. "Id": "0",
  12. "SignName": "AdminNET 平台",
  13. "TemplateCode": "SMS_xxx",
  14. "Content": "您的验证码为:${code},请勿泄露于他人!"
  15. },
  16. {
  17. "Id": "1",
  18. "SignName": "AdminNET 平台",
  19. "TemplateCode": "SMS_xxx",
  20. "Content": "注册成功,感谢您的注册,请妥善保管您的账户信息"
  21. }
  22. ]
  23. },
  24. // 腾讯云短信
  25. "Tencentyun": {
  26. "SdkAppId": "",
  27. "AccessKeyId": "",
  28. "AccessKeySecret": "",
  29. "Templates": [
  30. {
  31. "Id": "0",
  32. "SignName": "AdminNET 平台",
  33. "TemplateCode": "",
  34. "Content": ""
  35. }
  36. ]
  37. }
  38. }
  39. }