From zero to delivery in five minutes.

Sign up free or self host on your own server. Connect your SMTP, generate an API key, and send your first email with a single curl command.

01

Plug in your SMTP

Sign in with Google or GitHub, then add your SMTP credentials. Your password is encrypted with AES-256 and never stored in plain text. Or skip this entirely and use our free hosted version.

smtp settings
Hostsmtp.gmail.com
Port587
Encryption AES-256
02

One key. Use it everywhere.

A single API key covers email sending, OTP verification, and cron job scheduling. Drop it in your environment and you are done. No SDK required.

Your API key
ACTIVE
lfy_live_••••••••••••••••••••

Pass this as X-API-Key on every request. Never expose it in client-side code.

03

One call. Done.

POST to send an email. POST to schedule a cron job. Every delivery and execution is logged automatically to your dashboard. Need production reliability? Enable AWS EventBridge and jobs survive server restarts.

terminal
curl -X POST https://api.lifygo.com/send \
  -H "X-API-Key: lfy_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "hello@example.com",
    "subject": "Welcome aboard",
    "body": "You are in."
  }'
200 OK
POST /send