1. Home
  2. Knowledge Base
  3. Thrive Leads
  4. Form Types & Setup
  5. How to Connect Autoresponders and Email Services to Thrive Leads Forms

How to Connect Autoresponders and Email Services to Thrive Leads Forms

In this article, you’ll learn how to connect your Thrive Leads forms to your email marketing service (like Mailchimp, ActiveCampaign, etc.) and how to use the Asset Delivery feature to send lead magnets automatically.


To save the leads you collect, you generally need to connect your forms to an external service.

The best way to connect is using the API. This ensures a stable connection and allows you to use tags and groups easily.

  1. Go to Thrive Dashboard > API Connections to set up the integration data globally.

  2. In your form (Thrive Architect), click the Lead Generation element.

  3. In the left sidebar, click Connection.
  4. Choose API.
  5. Select your service and your mailing list.
  6. Click Apply.

Method 2: HTML Form Code

If your service isn’t supported via API, or you need to use a specific custom form setup, you can use the raw HTML code.

Step 1: Get the Code

  1. Log in to your email marketing provider.
  2. Create a signup form (often called “Embedded Form”).
  3. Copy the full HTML code provided (usually starts with <form...).

Step 2: Add to Thrive Leads

  1. Open your form in Thrive Architect.
  2. Click the Lead Generation element.
  3. In the left sidebar, click Connection.
  4. Choose HTML Code.
  5. Paste your code into the box.

  6. Click Generate Form.
    • Note: Thrive Leads will parse the code and recreate the fields (Name, Email) visually.

Asset Delivery (Delivering Lead Magnets)

Asset Delivery is a feature in Thrive Leads that automatically emails a file (PDF, ebook, code) to a new subscriber immediately after they sign up. This eliminates the need for complex automation in your email marketing service.

1. Create an Asset Group

  1. Go to Thrive Dashboard > Thrive Leads.
  2. Click the Menu (three dots) in the top right and select Asset Delivery.

  3. Click Asset Groups > Add New.
  4. Name your group (e.g., “Free Ebook”).
  5. Upload your file (PDF, etc.) or add a download link.

2. Configure the Email

In the Asset Delivery dashboard, customize the email template. This is the email the user receives, which will include a link to the asset you uploaded.

3. Enable on Content

  1. Open your form in Thrive Architect.
  2. Click the Lead Generation element.
  3. In the left sidebar, go to Advanced.
  4. Toggle Asset Delivery to ON.
  5. Select the Asset Group you created.

Now, when someone signs up, Thrive Leads will add them to your mailing list AND immediately send them the asset email.

Advanced: Adding Dynamic Data

Sometimes you need to pass hidden data to your autoresponder, such as the visitor’s IP address.

Developer Filter: tve_additional_fields

For developers, Thrive Leads provides a filter to inject hidden fields programmatically.

add_filter("tve_additional_fields", "my_custom_fields", 10, 4);

function my_custom_fields($additional_content, $lead_group, $form_type, $form_variation){
    return $additional_content . "<input type='hidden' name='source' value='sidebar_widget'>";
}

That’s it! You’ve successfully connected your forms to your email service.

Was this article helpful?

Related Articles

>