Grosend|Docs
Getting Started
  • Introduction
  • Quick Start
Sending
  • SMTP Relay
  • Authentication
Automation
  • Overview
API Reference
  • Overview
  • Send Email
  • Domains
  • Templates
  • API Keys
  • Webhooks
Analytics
  • Tracking
Docs
Getting Started
  • Introduction
  • Quick Start
Sending
  • SMTP Relay
  • Authentication
Automation
  • Overview
API Reference
  • Overview
  • Send Email
  • Domains
  • Templates
  • API Keys
  • Webhooks
Analytics
  • Tracking

Grosend Documentation

Everything you need to integrate, send, and track transactional emails.

Install the SDK

Terminal
npm install @grosend/sdk

Send your first email

Terminal
curl -X POST https://api.grosend.com/api/v1/emails \
  -H "Authorization: Bearer sv_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "from": "hello@yourdomain.com",
    "to": ["recipient@example.com"],
    "subject": "Welcome to Grosend",
    "html": "<h1>Hello!</h1><p>Your email platform is ready.</p>"
  }'
You get 4,000 free emails on signup. Each email costs 1 credit from your balance.