Email Service
Post in
四 05 九月 2024
生成邮件模板并发送邮件
async function sendEmail(
email: string,
filename: string,
content: Buffer,
subject = "材料下载"
) {
const htmlTemplate = await generateHtmlForFileDownload();
const …