TABLE OF CONTENTS › Unsubscription Option
Adding the following:
<txp:zem_contact_checkbox name="zemUnSubscribe" label="Unsubscribe:" required="no" value="on" />
Will display a checkbox that a user can check, and submit (along with an email address) to unsubscribe (so that your users don’t always have to unsubscribe from a link in an email).
Alternatively, jdykast submits this tag that works:
<txp:zem_contact_secret name="zemUnSubscribe" value="on" />
required="no" attribute to some fields.A simple form using the method above would be:
<txp:zem_contact to="youremail@yourwebsite.com" >
<txp:zem_contact_email name="zemSubscriberEmail" label="Your Email:" />
<txp:zem_contact_checkbox name="zemUnSubscribe" label="Unsubscribe:" required="no" value="on" />
<txp:zem_contact_submit />
</txp:zem_contact>