| 13 | ) |
| 14 | |
| 15 | type EmailConfig struct { |
| 16 | Username string |
| 17 | Password string |
| 18 | Host string |
| 19 | Port uint64 |
| 20 | To string |
| 21 | From string |
| 22 | } |
| 23 | |
| 24 | func (c EmailConfig) Check() error { |
| 25 | if c.Username == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected