Mailriser is in open beta. Learn more.

Mailriser Documentation

Documentation/Subscribers/Adding subscribers
Adding subscribers
Learn the different ways to add subscribers to your list.

You can add subscribers to a list using any of the four methods below.

HTML Forms

An HTML form is the most common way to add subscribers to your list. A user can fill out a form on your website and be added to your list after a simple POST request.

Here's an example HTML form:

<form method="POST" action="https://mailriser.com/api/subscribers/add">
    <input type="hidden" name="listId" value="(id of list here)" />
    <div>
        <label for="email">Email</label>
        <input name="email" />
    </div>
    <!-- ↓↓↓ optional ↓↓↓ -->
    <div>
        <label for="name">Name</label>
        <input name="name" />
    </div>
    <!-- ↑↑↑ optional ↑↑↑ -->
    <button type="submit">Subscribe</button>
</form>

Add manually

The easiest way is to go to your list and click on the Add Subscriber button.

From here you can enter a subscriber's email, name, and any tags you want them to have.

Import from a CSV file

If you're coming from another email service, you can import your subscribers from a CSV file.

To do this, go to your list and click on the Import Subscribers button.

This is a great way to bulk import a large number of subcribers.

API

The final way you can add subscribers to your list is by using the API. This is the most powerful way to add subscribers to your list because you can create your own custom integration with this.