export async function sendEmail(to: string, subject: string, text: string): Promise { // For demo: log to console. Use nodemailer/sendgrid/whatever in prod. console.log(`[Email to ${to}]: ${subject}\n${text}`); }