service/apollostruct/emailconfig.go

14 lines
284 B
Go
Raw Normal View History

2024-08-23 16:17:32 +08:00
package apollostruct
type EmailContentConfig struct {
Subject string `json:"subject"`
Text string `json:"text"`
}
type EmailInfoConfig struct {
2024-10-15 16:02:08 +08:00
Host string `json:"host"`
Port int `json:"port"`
2024-08-23 16:17:32 +08:00
Address string `json:"address"`
Password string `json:"password"`
}