Skip to Content
ExamplesNewsletter Signup

Newsletter Signup

A newsletter signup form collects just an email address. Keep it minimal: one field, one button, instant confirmation.

newsletter.html
<form action="https://formtorch.com/f/YOUR_FORM_ID" method="POST"> <input name="email" type="email" placeholder="you@example.com" required /> <!-- Honeypot --> <input name="_honeypot" type="text" style="display:none" tabindex="-1" autocomplete="off" /> <input name="_redirect" type="hidden" value="https://yoursite.com/subscribed" /> <button type="submit">Subscribe</button> </form>

Tagging subscribers by source

Add a hidden source field to track where signups come from:

<input name="source" type="hidden" value="homepage-footer" />

That field will appear in the dashboard and in any webhook payloads you receive.

Double opt-in

Formtorch stores the submission immediately. If you need double opt-in (sending a confirmation email before adding to your list), connect a webhook to your email platform and trigger the confirmation flow there.

Newsletter signups are low-risk for spam but high-value targets for fake addresses. The honeypot field filters most bot traffic. For higher confidence, enable TorchWarden in Form Settings.

Last updated on