(
to: string | string[],
title: string,
message: string,
serviceName?: string
)
| 56 | }, |
| 57 | |
| 58 | async sendNotificationEmail( |
| 59 | to: string | string[], |
| 60 | title: string, |
| 61 | message: string, |
| 62 | serviceName?: string |
| 63 | ): Promise<EmailServiceResponse> { |
| 64 | return microService.sendNotificationEmail(to, title, message, serviceName); |
| 65 | }, |
| 66 | |
| 67 | async verifyConnection(): Promise<boolean> { |
| 68 | return microService.verifyEmailConnection(); |
nothing calls this directly
no test coverage detected