"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.sendEmail = sendEmail;
async function sendEmail(options, context) {
const { text, html } = options;
console.log('邮件内容:', html || text);
}