File

src/providers/notification/notification.provider.ts

Index

Properties

Properties

body
body: string
Type : string
from
from: string
Type : string
Optional
subject
subject: string
Type : string
to
to: string | string[]
Type : string | string[]
export interface DeliverParams {
  to: string | string[];
  from?: string;
  subject: string;
  body: string;
}

export abstract class NotificationProvider {
  abstract deliver(params: DeliverParams);
}

results matching ""

    No results matching ""