Automation Integration

Zapier + Unosend

Connect Unosend to 5,000+ apps with Zapier. Automate email sending without writing code.

Features

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

Quick Start

Get up and running in minutes with this code example

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 Zapier

Setup Guide

Follow these steps to integrate Unosend with Zapier

1

Search for "Unosend" in Zapier

2

Connect your Unosend account with API key

3

Choose a trigger app (Gmail, Typeform, etc.)

4

Configure the "Send Email" action

5

Map fields and activate your Zap

Why Use Unosend with Zapier?

No coding required

Connect any app to email

Automated workflows

Easy template customization

Ready to integrate?

Start sending emails from Zapier in under 5 minutes. Free tier includes 5,000 emails/month.