Files
mailx/consts.go
T
2025-08-10 21:17:10 +08:00

11 lines
254 B
Go

package mailx
type Platform3rdType string
const (
Platform3rdTypeAliyun Platform3rdType = "aliyun"
Platform3rdTypeAws Platform3rdType = "aws"
Platform3rdTypeMailgun Platform3rdType = "mailgun"
Platform3rdTypeSmtp Platform3rdType = "smtp"
)