Skip to content
QuickSend

Getting Started — Introduction

Send transactional email through your Gmail.

QuickSend removes SMTP, App Passwords, and firewall rules. Connect Gmail via Google OAuth and deliver through your own mailbox — no domain, no DNS, no SMTP server.

Secure by default

Never see your password. OAuth revocable tokens + Bearer `qs_live_...` keys.

API-first

One `POST /api/send`. Works from any cloud or edge runtime.

Zero domain required

Send as @gmail.com or Workspace `hello@yourcompany.com`. No SPF/DKIM setup.

High daily limits — Google's, not ours

Personal Gmail: 500/day. Workspace: 2,000/day. Resets UTC midnight.

curl -X POST https://quicksend.elzipodev.cv/api/send \
  -H "Authorization: Bearer qs_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "from": "you@gmail.com",
    "to": "user@example.com",
    "subject": "Welcome to Acme",
    "html": "<p>Your receipt is ready.</p>"
  }'