| 21 | } |
| 22 | |
| 23 | type smtpMailer struct { |
| 24 | address string |
| 25 | from string |
| 26 | tracer telemetry.Tracer |
| 27 | auth smtp.Auth |
| 28 | } |
| 29 | |
| 30 | // NewSMTPEmailService creates a new instance of the smtpMailer |
| 31 | func NewSMTPEmailService(tracer telemetry.Tracer, config SMTPConfig) Mailer { |
nothing calls this directly
no outgoing calls
no test coverage detected