Subscribers can be manually added to your store by sending a POST
request to a subscribe endpoint for your store. This is commonly done by creating a signup form in HTML on your website.
The endpoint is https://{store-slug}.lemonsqueezy.com/email-subscribe/external
where {store-slug}
is the URL of your store which can be configured in your store settings.
The endpoint accepts two variables:
email
– The email address of the subscribername
– (optional) The name of the subscriber<form action="https://store-slug.lemonsqueezy.com/email-subscribe/external" method="post">
<div>
<label for="name">Name</label><br>
<input type="text" name="name" id="name">
</div>
<div>
<label for="email">Email</label><br>
<input type="email" name="email" id="email">
</div><br>
<button type="submit">Submit</button>
</form>