📧 Email Service

API simple para enviar emails desde cualquier formulario

📚 Cómo usar la API

Envía un POST a /api/send con los siguientes campos:

fetch("https://TU-DOMINIO/api/send", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    to: "destino@email.com",    // Requerido
    subject: "Asunto",          // Requerido
    message: "Contenido",       // Requerido
    from: "remitente@email.com", // Opcional
    name: "Nombre"              // Opcional
  })
})