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