export abstract class EmailService
{
abstract send( from:string, to:string, title:string, message:string ):Promise<void>;
}