Skip to content

Send

Panel > Systems > Send

Send Services

Menu TitleKey NameDefault Key ValueValue TypeDescription
Email Service Providersend_email_servicepluginPlugin application scenario parameter sendEmail
SMS Service Providersend_sms_servicepluginPlugin application scenario parameter sendSms
Default SMS Country Codesend_sms_default_code86numberNo + sign
Supported SMS Country Codessend_sms_supported_codes["86"]arrayNo + sign
Desktop Notification Providerdesktop_notifications_servicepluginPlugin application scenario parameter appNotifications
iOS Notification Providerios_notifications_servicepluginPlugin application scenario parameter appNotifications
Android Notification Providerandroid_notifications_servicepluginPlugin application scenario parameter appNotifications
WeChat Notification Providerwechat_notifications_servicepluginPlugin application scenario parameter appNotifications

Verify Code Templates

Column TitleKey NameSending NumberDescription
General Verification Codeverifycode_template11Key value JSON format, see below
Register New Accountverifycode_template22Key value JSON format, see below
Modify Information Verificationverifycode_template33Key value JSON format, see below
Change New Bindingverifycode_template44Key value JSON format, see below
Reset Login Passwordverifycode_template55Key value JSON format, see below
Reset Payment Passwordverifycode_template66Key value JSON format, see below
Use Verification Code to Loginverifycode_template77Key value JSON format, see below
Use Verification Code to Logout Accountverifycode_template88Key value JSON format, see below
json
[
    {
        "type": "email",
        "isEnabled": true,
        "template":[
            {
                "langTag": "zh-Hans",
                "title": "Title (HTML supported)",
                "content": "Content (HTML support)"
            }
        ]
    },
    {
        "type": "sms",
        "isEnabled": false,
        "template":[
            {
                "langTag": "en",
                "signName": "Text Message Signature Name",
                "templateCode": "Template ID",
                "codeParam": "Verify code variable name"
            }
        ]
    }
]

Mail available variables (plugin parsing):

  • {sitename} Website Name
  • {code} Verify Code
  • {time} Valid Time

Released under the Apache-2.0 License