|
package apollostruct
|
|
|
|
type EmailContentConfig struct {
|
|
Subject string `json:"subject"`
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
type EmailInfoConfig struct {
|
|
Host string `json:"host"`
|
|
Port int `json:"port"`
|
|
Address string `json:"address"`
|
|
Password string `json:"password"`
|
|
}
|