How do people subscribe to this campaign?
Use our subscribe form – One of the easiest ways to allow someone to subscribe to this campaign is to send them to our default subscribe form:
http://app.nouri.sh/campaigns/1234/subscribers/newOne-click subscribe – You can provide individual readers with a customized link which will automatically subscribe them to this campaign when clicked on. Be sure to edit the URL to include their real email address:
http://app.nouri.sh/campaigns/1234/subscribe?subscriber[email]=email@domain.com
Add a subscribe form to your website – You can add a subscribe form to your website. Paste in the code below. The redirect_to attribute is optional, and will make Nourish redirect back to any URL you like. Nourish will also send a confirmation email to your subscriber if you add the notify_them hidden tag. The email will also be sent to you if you add the notify_me hidden tag.
Remember to replace the number 1234 with your campaign ID.
<form action="http://app.nouri.sh/campaigns/1234/subscribe" method="post">
<input type="hidden" name="redirect_to" value="http://myblog.com"/>
<input type="hidden" name="notify_me" value="1"/>
<input type="hidden" name="notify_them" value="1"/>
<label>Email</label><br />
<input id="subscriber[email]" name="subscriber[email]" type="text" /><br />
<input name="commit" type="submit" value="Subscribe" />
</form>