Skip to content
QuickSend

Quick Start

Get up and running in under 5 minutes.

  1. Step 1

    Connect your Gmail

    Go to Dashboard → Gmail Accounts → Connect New Account. Authorize via Google OAuth.

    How it works →
  2. Step 2

    Generate an API key

    Dashboard → API Keys → Generate New Key. Copy `qs_live_...` — shown once.

  3. Step 3

    Send your first email

    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 QuickSend",
        "html": "<p>Your receipt is ready.</p>"
      }'

    Also accepts x-api-key: qs_live_... header.