rojects/source/server/email/EmailSender.ts

5 lines
106 B
TypeScript
Raw Normal View History

2026-07-14 13:45:27 +00:00
export interface EmailSender
{
sendEmail( to: string, subject: string, body: string ): Promise<void>;
}