Adding a subscription box to your website

Skill Level: 
Intermediate

You can add a Listserv subscription form to any website if the list has been configured to allow subscriptions.

Just add the following HTML to a page. Two modifications need to be made to customize it for your list:

  • The SUCCESS_URL - swap out https://yoursite.unl.edu/subscribe-success with a URL to a page on your site that has a confirmation message.
  • The LISTNAME - swap out YOUR-LISTERV-LIST-NAME with your Listserv list name.

<form method="post" action="https://listserv.unl.edu/signup-anon/" id="subscribe">
    <label for="address">Email</label>
    <input type="email" id="address" name="ADDRESS" value="">
    <input type="hidden" value="https://yoursite.unl.edu/subscribe-success" name="SUCCESS_URL">
    <input type="hidden" value="BOTH" name="LOCKTYPE">
    <input type="hidden" name="LISTNAME" value="YOUR-LISTERV-LIST-NAME">
    <br><br>
    <input type="submit" value="Submit" name="submit">
</form>
Contributed By: 
DXG