Connect Unosend to 5,000+ apps with Zapier. Automate email sending without writing code.
Everything you need to send emails from Zapier
Connect to 5,000+ apps
No-code automation
Event-triggered emails
Custom email templates
Multi-step workflows
Get up and running in minutes with this code example
// Zapier webhook handler
// This runs on your server when Zapier triggers a Zap
import { Unosend } from '@unosend/node';
const unosend = new Unosend(process.env.UNOSEND_API_KEY);
// Endpoint for Zapier to call
app.post('/api/zapier/send-email', async (req, res) => {
const { to, subject, message, from_name } = req.body;
const { data, error } = await unosend.emails.send({
from: `${from_name} <hello@yourdomain.com>`,
to,
subject,
html: `<p>${message}</p>`,
});
if (error) {
return res.status(400).json({ error });
}
res.json({ success: true, id: data.id });
});
// Or use Unosend's native Zapier integration
// No code required - just configure in ZapierFollow these steps to integrate Unosend with Zapier
Search for "Unosend" in Zapier
Connect your Unosend account with API key
Choose a trigger app (Gmail, Typeform, etc.)
Configure the "Send Email" action
Map fields and activate your Zap
No coding required
Connect any app to email
Automated workflows
Easy template customization
Start sending emails from Zapier in under 5 minutes. Free tier includes 5,000 emails/month.