Integrate JustMailIt into your applications
All API requests require Firebase authentication token in the Authorization header:
Authorization: Bearer YOUR_FIREBASE_TOKEN
/api/sent_emailsRetrieve user's sent email history
Response:{ "emails": [...], "stats": {...} }
/sendSend an email automation
Body:{ "subject": "", "body": "", "recipients": [] }
/api/sent_email_statsGet email statistics and analytics
Response:{ "sent": 0, "delivered": 0, "opened": 0 }
/get_profileRetrieve user profile data
Response:{ "name": "", "email": "", "resume": "" }