| 1 | export interface EmailInterface { |
| 2 | name: string; |
| 3 | validateEnvKeys: string[]; |
| 4 | sendEmail( |
| 5 | to: string, |
| 6 | subject: string, |
| 7 | html: string, |
| 8 | emailFromName: string, |
| 9 | emailFromAddress: string, |
| 10 | replyTo?: string |
| 11 | ): Promise<any>; |
| 12 | } |
no outgoing calls
no test coverage detected