| 13 | ) => void |
| 14 | |
| 15 | export interface MessageStack { |
| 16 | callback: MessageCallback |
| 17 | message: Message |
| 18 | attachment: MessageAttachment |
| 19 | text: string |
| 20 | returnPath?: string |
| 21 | from: string |
| 22 | to: ReturnType<typeof addressparser> |
| 23 | cc: string[] |
| 24 | bcc: string[] |
| 25 | } |
| 26 | |
| 27 | export class SMTPClient { |
| 28 | public readonly smtp: SMTPConnection |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…