From zero to delivery in five minutes.

Connect your SMTP server, generate an API key, and send your first email with a single curl command. No vendor accounts. No monthly fees.

01

Plug in your SMTP

Sign in with Google or GitHub, then add the SMTP credentials you already have. Gmail, Zoho, your hosting provider. Your password is encrypted with AES-256 and never stored in plain text.

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_9a721c810de08e21c3b99
Pass as X-API-Key on every request
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.

terminal
curl -X POST http://localhost:8080/send \
-H "X-API-Key: lfy_live_9a721c810de08e21c3b99" \
-H "Content-Type: application/json" \
-d {
"to": "hello@example.com",
"subject": "Welcome aboard",
"body": "You are in."
}
200 OK · 14ms
docs.lifygo.com