11 lines
254 B
Go
11 lines
254 B
Go
package mailx
|
|
|
|
type Platform3rdType string
|
|
|
|
const (
|
|
Platform3rdTypeAliyun Platform3rdType = "aliyun"
|
|
Platform3rdTypeAws Platform3rdType = "aws"
|
|
Platform3rdTypeMailgun Platform3rdType = "mailgun"
|
|
Platform3rdTypeSmtp Platform3rdType = "smtp"
|
|
)
|