- Support Home
- Knowledge Base
- Web Forms
- Unsubscribe Forms
- Example Form
Example Form
A global unsubscribe form is shown below. On submission of this form, the entered email address will be marked as globally unsubscribed. If the address is not present in the database, the client will be redirected to the error page.
<form name="unsub" method="POST" action="http://edm.taguchimail.com/u/">
<fieldset>
<label for="tm_email">Email address:</label>
<input type="text" name="email" id="tm_email" value="" />
<input type="submit" name="submit" value="Unsubscribe »" />
<input type="hidden" name="dest" value="http://example.org/unsub-success" />
<input type="hidden" name="err" value="http://example.org/unsub-error" />
<!-- Organization ID as shown in TM admin interface -->
<input type="hidden" name="organization_id" value="1" />
</fieldset>
</form>