mirror of
https://github.com/certd/certd.git
synced 2026-05-16 21:27:34 +08:00
chore: email
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export type EmailSend = {
|
||||
subject: string;
|
||||
content: string;
|
||||
receivers: string[];
|
||||
};
|
||||
|
||||
export interface IEmailService {
|
||||
send(email: EmailSend): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user