Some checks failed
Build docker and publish / build (20.15.1) (push) Failing after 8m21s
25 lines
607 B
Go
25 lines
607 B
Go
package types
|
|
|
|
const (
|
|
// ForthwithSendEmail forthwith send email
|
|
ForthwithSendEmail = "forthwith:email:send"
|
|
)
|
|
|
|
const (
|
|
EmailTypeVerify = "verify"
|
|
EmailTypeMaintenance = "maintenance"
|
|
EmailTypeExpiration = "expiration"
|
|
EmailTypeTrafficExceed = "traffic_exceed"
|
|
EmailTypeCustom = "custom"
|
|
)
|
|
|
|
type (
|
|
SendEmailPayload struct {
|
|
Type string `json:"type"`
|
|
Scene string `json:"scene,omitempty"`
|
|
Email string `json:"to"`
|
|
Subject string `json:"subject"`
|
|
Content map[string]interface{} `json:"content"`
|
|
}
|
|
)
|