Momo Email Service

Email service is running on Next.js 15+

Available API Endpoints:

  • POST /api/send-email - Send email
  • GET /api/health - Health check
  • GET /api/templates - Get available templates

Previews

Example Usage:

// Send email example
fetch('/api/send-email', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    type: 'welcome',
    to: 'user@example.com',
    subject: 'Welcome!',
    data: {
      name: 'John Doe'
    }
  })
})