oak-general-business/es/utils/email/index.frontend.js

5 lines
140 B
JavaScript

export async function sendEmail(options, context) {
const { text, html } = options;
console.log('邮件内容:', html || text);
}