Mailchimp Integration
Automatically add form submitters to your Mailchimp email list when someone fills out your form.
How it works
When someone submits your form, Rowen automatically subscribes their email address to your Mailchimp audience list. No extra code needed — just connect your API key and audience ID.
your form
submission
Mailchimp list
Setup in 4 steps
Takes about 2 minutes.
Get your Mailchimp API key
Log in to Mailchimp, then go to Account → Extras → API Keys. Click "Create A Key" and copy the generated key.
The part after the dash (e.g., us1) is your datacenter. Rowen uses this automatically.
Find your Audience / List ID
In Mailchimp, go to Audience → Settings → Audience name and defaults. Your Audience ID is shown on that page.
Configure in Rowen
Go to your form's Settings tab, then Integrations. Scroll down to the Mailchimp section and:
- aToggle "Enable Mailchimp integration" on
- bPaste your API Key
- cPaste your Audience / List ID
- dSet the email field name(defaults to "email")
Save and test
Click Save Settings, then submit a test form entry with a real email address. Check your Mailchimp audience to confirm the email was added.
Merge fields
Rowen automatically maps form fields to Mailchimp merge fields so subscriber profiles are populated with names.
| Mailchimp Merge Field | Mapped From |
|---|---|
| FNAME | name or Name field |
| LNAME | lastName or last_name field |
If your form doesn't have these fields, they'll be left empty in Mailchimp — the subscriber will still be added.
Which email field is used?
By default, Rowen looks for a form field named email. If your form uses a different field name (like subscriber_email or contact_email), change the Email field name setting to match.
<form action="https://rowen.in/api/f/YOUR_FORM_ID" method="POST"> <input name="name" placeholder="Your name" /> <input name="email" placeholder="Your email" /> <!-- ^^^^^^ This matches the default "email" field --> <button type="submit">Subscribe</button> </form>
- If someone is already subscribed, Mailchimp silently ignores the duplicate — no errors
- Subscribers are added with "subscribed" status (no double opt-in from Rowen's side)
- The Mailchimp API call is fire-and-forget — it never blocks or delays the form submission
- Your API key is stored securely and never exposed to form submitters