perf: 支持邮箱发送证书

This commit is contained in:
xiaojunnuo
2025-07-15 13:58:01 +08:00
parent 9864792bbf
commit 95332d5db9
6 changed files with 113 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
export type EmailSend = {
subject: string;
content: string;
receivers: string[];
content?: string;
attachments?: any[];
html?: string;
};
export interface IEmailService {