DefaultBackend is an implementation of the Backend that sends an email without queueing. This backend is always enabled and will send emails via SMTP.
| 46 | // that sends an email without queueing. |
| 47 | // This backend is always enabled and will send emails via SMTP. |
| 48 | type DefaultBackend struct { |
| 49 | Dialer EmailDialer |
| 50 | Templates Templates |
| 51 | } |
| 52 | |
| 53 | type dialerParams struct { |
| 54 | Host string |
nothing calls this directly
no outgoing calls
no test coverage detected