Skip to content

发信设置

控制面板 > 系统 > 发信设置

发信服务商

栏目标题键名默认键值键值类型说明
邮件服务商send_email_serviceplugin插件应用场景参数 sendEmail
短信服务商send_sms_serviceplugin插件应用场景参数 sendSms
短信默认国际区号send_sms_default_code86number不带 + 号
短信国际区号列表send_sms_supported_codes["86"]array不带 + 号
桌面推送服务商desktop_notifications_serviceplugin插件应用场景参数 appNotifications
iOS 推送服务商ios_notifications_serviceplugin插件应用场景参数 appNotifications
Android 推送服务商android_notifications_serviceplugin插件应用场景参数 appNotifications
微信推送服务商wechat_notifications_serviceplugin插件应用场景参数 appNotifications

验证码模板设置

栏目标题键名发信编号说明
通用验证码verifycode_template11键值 JSON 格式见下方
注册新账号verifycode_template22键值 JSON 格式见下方
修改资料验证verifycode_template33键值 JSON 格式见下方
更换新绑定verifycode_template44键值 JSON 格式见下方
重置登录密码verifycode_template55键值 JSON 格式见下方
重置支付密码verifycode_template66键值 JSON 格式见下方
使用验证码登录verifycode_template77键值 JSON 格式见下方
使用验证码注销账号verifycode_template88键值 JSON 格式见下方
json
[
    {
        "type": "email",
        "isEnabled": true,
        "template":[
            {
                "langTag": "zh-Hans",
                "title": "标题(支持 HTML)",
                "content": "内容(支持 HTML)"
            }
        ]
    },
    {
        "type": "sms",
        "isEnabled": false,
        "template":[
            {
                "langTag": "zh-Hans",
                "signName": "短信签名名称",
                "templateCode": "模板 ID",
                "codeParam": "验证码变量名"
            }
        ]
    }
]

邮件可用变量(插件解析):

  • {sitename} 站点名称
  • {code} 验证码
  • {time} 有效时间

Released under the Apache-2.0 License