mirror of
https://github.com/certd/certd.git
synced 2026-04-15 13:32:37 +08:00
12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
export type EmailSend = {
|
|
subject: string;
|
|
receivers: string[];
|
|
content?: string;
|
|
attachments?: any[];
|
|
html?: string;
|
|
};
|
|
|
|
export interface IEmailService {
|
|
send(email: EmailSend): Promise<void>;
|
|
}
|