(templateType, from string, to []string, data interface{})
| 30 | // Backend is an interface for sending emails. |
| 31 | type Backend interface { |
| 32 | SendEmail(templateType, from string, to []string, data interface{}) error |
| 33 | } |
| 34 | |
| 35 | // EmailDialer is an interface for sending email messages |
no outgoing calls
no test coverage detected