Lead generation forms for indie makers

Collect emails, create alerts, integrate and analyse

Validating ideas is about building MVPs fast

Forget about setting servers up or monkeys for collecting emails

Laptop

How could you gather users before?

Code a backend even when you just need a HTML landing page.

Hack something with Google Sheets or PHP.

Use some newsletter provider, no flexibility, poor integration.

Now, build faster

Use our backend to store emails and manage them through our API.

Copy the form, receive notifications, get metrics, integrate with other apps. All from the dashboard.

Manage a drip campaign easily, export your data anytime, wherever.

Built for side projects

We help developers validating product ideas. Building something without knowing if somebody is interested is a waste of time.

1. Set up a form

- Create an email list.
- Copy our HTML and our JS, 5kB.
- No form builders, you take care of the styling.

<div id="tu-form" data-id="070d1c3a-af64-584e-a055-ca9481942cba">
    <input id="tu-email" type="email" name="address" required>
    <button id="tu-submit" type="button">Send</button>
    <div id="tu-message"></div>
</div>
<script src="https://tuemilio.com/assets/js/tuemilio.js"></script>
                        

2. Collect Emails

- We validate the submitted emails for you. No disposable email accepted.
- Get metrics, conversion rate, time to conversion, unique visits, etc.
- Understand where your early adopters are coming from.

3. Get notified

- Receive alerts in your favourite channel when new users subscribe.
- Set how often and where.
- Get activity reports.

New message

4. Integrate with the best apps

- Use our webhooks events.
- Add your subscribers automatically to other services.
- Export your list in CSV anytime.

New message

5. Manage your subscribers

- You need to send unsubscription links in each email? We got them.
- If you keep working on your idea, use our API as a microservice.
- Did I send that email to this users? Keep track of drip campaigns.

$ curl https://tuemilio.com/api/v1/lists/1234/emails/1234
{ 
  "id": 1234, 
  "address": "hello@company.com", 
  "ip": "XXX.XX.XX.X", 
  "subscribed": 1, 
  "click_time": "140",  
  "referrer_url": "https://www.producthunt.com/",
  "origin_url": "https://www.yourapp.com/",
  "unsubscribe_link": "https://tuemilio.com/email/941c10d6-a8bb-5d4d-880b-69fdef36fabe/unsubscribe"
  "created_at": "2018-05-03 18:50:57",
  "location": {
    "continent_code": "OC", 
    "continent": "Oceania", 
    "country_code": "AU", 
    "country": "Australia", 
    "region_code": "NSW", 
    "latitude": "-33.903200", 
    "longitude": "150.967700", 
    "language": "English", 
    "language_code": "en", 
    "city": "Sydney", 
    "timezone": "7", 
    "region": "New South Wales", 
    "zip": 2012, 
  },
  "subscriber": {
    "language": "English",
    "language_code": "en"
  }
}