chore: email

This commit is contained in:
xiaojunnuo
2023-06-07 23:36:42 +08:00
parent 4c324960e6
commit 64afebecd4
6 changed files with 163 additions and 1 deletions
@@ -0,0 +1,9 @@
export type EmailSend = {
subject: string;
content: string;
receivers: string[];
};
export interface IEmailService {
send(email: EmailSend): Promise<void>;
}