
Connect your SMTP server, generate an API key, and send your first email with a single curl command. No vendor accounts. No monthly fees.
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.
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.
X-API-Key on every requestPOST to send an email. POST to schedule a cron job. Every delivery and execution is logged automatically to your dashboard.
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."
}