| 1 | export interface EmailConfig { |
| 2 | user: string; |
| 3 | host: string; |
| 4 | port: number; |
| 5 | tls: boolean; |
| 6 | tlsOptions: { |
| 7 | rejectUnauthorized: boolean; |
| 8 | servername: string; |
| 9 | }; |
| 10 | xoauth2?: string; |
| 11 | password?: string; |
| 12 | } |
| 13 | |
| 14 | export type EmailQueue = { |
| 15 | serviceType: "gmail" | "other"; |
nothing calls this directly
no outgoing calls
no test coverage detected