src/providers/notification/notification.provider.ts
Methods |
|
| Abstract deliver | ||||||
deliver(params: DeliverParams)
|
||||||
|
Parameters :
Returns :
any
|
export interface DeliverParams {
to: string | string[];
from?: string;
subject: string;
body: string;
}
export abstract class NotificationProvider {
abstract deliver(params: DeliverParams);
}