Newsletter signup for any website

An email form. A subscriber count. An export when you need it.

You write a blog, or run a community, or sell things. You want people to give you their email. You do not want to pay Mailchimp $50/month just for a signup form. This is the collection part. You still send emails with whatever tool you prefer.

How an agent handles this: Your agent creates a newsletter signup form via API (email + name fields). Embeds form on your website. Visitors submit email addresses. An automation sends a welcome email and forwards the subscriber to your email marketing tool via a fetch step — runs on every signup without agent involvement. Submissions API tracks growth.

What are you using now?

Without Sutrena

  • Paying $50/month for Mailchimp just to have a signup form
  • Or a Google Form that looks wrong on your site
  • No idea if signups are growing or flat this week
  • Duplicates in your list. You email the same person twice.
  • Export is locked behind a higher-tier plan

With Sutrena

  • From $29/month. A newsletter form is one form — Pro covers it.
  • Embed a form or build your own — POST JSON either way
  • Submissions API shows subscriber count. CSV export for growth analysis.
  • uniqueBy: ['email'] prevents duplicates
  • CSV export on Pro ($29/mo) and Scale ($99/mo)

One API call

curl -X POST https://sutrena.com/api/forms \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflowId": "newsletter"
  }'

The template has name and email fields. Embed the form, share the URL, or build your own signup box and POST to the submit endpoint.

What this costs

A newsletter signup is one form. Pro is $29/month — 100 projects, unlimited submissions, and CSV export. That covers most personal blogs and small projects. This is the collection layer. You still need a separate tool to send emails — but that separation is a good thing. Pick the cheapest sender and collect with Sutrena.

What is Sutrena?

Sutrena is the web runtime for AI agents. Forms, Pages, Analytics, Webhooks, Automations — all through 67 MCP tools and one REST API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Use any one feature or all of them together.

Pages

Deploy HTML instantly

Forms

Collect structured data

Automations

DSL-based pipelines with 14 step types

Analytics

Privacy-first, no cookies

Webhooks

Slack, Discord, Telegram

Get started in two API calls

1. Get a trial key (no auth, no signup)

curl -X POST https://sutrena.com/api/trial

2. Create anything — a page, form, automation, or analytics site

# Create a form
curl -X POST https://sutrena.com/api/forms \
  -H "Authorization: Bearer st_trial_xxx" \
  -H "Content-Type: application/json" \
  -d '{"name": "waitlist", "fields": [{"name": "email", "label": "Email", "type": "email", "required": true}]}'

# Or deploy a page
curl -X POST https://sutrena.com/api/pages \
  -H "Authorization: Bearer st_trial_xxx" \
  -H "Content-Type: application/json" \
  -d '{"slug": "index", "title": "My Site", "html": "<h1>Live</h1>"}'

Want to collect emails?

Get a trial key. Add the form to your site. See signups come in.

Newsletter Signup Form for Any Website — Form API | Sutrena | Sutrena