Transactional Email
Send order confirmations, password resets, and notifications through our API or SMTP. Built for speed and reliability.
- RESTful API with simple endpoints
- SMTP relay for existing workflows
- Webhooks for delivery tracking
- Template variables for personalization
Marketing Campaigns
Create and send newsletters with our drag-and-drop editor. No design skills needed.
- Drag-and-drop email builder
- Pre-built templates to get started
- A/B testing for subject lines
- Scheduled sending
Automation Workflows
Set up welcome sequences, drip campaigns, and triggered emails. Let your emails work while you sleep.
- Visual workflow builder
- Trigger on user actions
- Time-based delays
- Conditional branching
Analytics Dashboard
See who opens your emails, what they click, and how your campaigns perform. Clear data, no confusion.
- Open and click tracking
- Bounce and complaint monitoring
- Campaign comparison
- Export reports
Deliverability Tools
We help you set up SPF, DKIM, and DMARC so your emails land in inboxes, not spam folders.
- Domain authentication setup
- Reputation monitoring
- Blocklist checking
- Deliverability score
AI Writing Help
Stuck on what to write? Our AI assistant can help you draft subject lines and email content.
- Subject line suggestions
- Content generation
- Tone adjustment
- Grammar and style checks
And there's more
All the extra features you need to run your email operations smoothly.
Contact Management
Keep your contacts organized with lists, tags, and segments.
Brand Kits
Save your colors, fonts, and logo for consistent emails.
Multiple Domains
Send from different domains for different projects.
Security
Two-factor auth, API keys, and role-based access.
Scheduled Sending
Send emails at the perfect time for your audience.
Webhooks
Get real-time notifications for email events.
Built for developers
Our API is designed to be easy to use. Clear documentation, helpful error messages, and code examples in your favorite languages.
- RESTful API with JSON responses
- SDKs for Python, Node.js, Ruby, and more
- Webhooks for real-time events
- SMTP support for legacy systems
const gclap = require('gclap');
const client = new gclap.Client({
apiKey: process.env.GCLAP_API_KEY
});
// Send an email
const response = await client.send({
to: 'user@example.com',
from: 'you@yourdomain.com',
subject: 'Welcome aboard!',
html: '<h1>Thanks for signing up</h1>'
});
console.log('Email sent:', response.id);