| 3 | import { EmailConfigManager } from './emailConfig.js' |
| 4 | |
| 5 | export interface EmailOptions { |
| 6 | subject: string |
| 7 | html: string |
| 8 | text?: string |
| 9 | } |
| 10 | |
| 11 | export interface SendResult { |
| 12 | success: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected