Build a User Management Page for Subscription Preferences and Opt-Outs

These are pages that users can access to edit their data and opt in and out of lists, or opt out of email or SMS completely. The policy is that unsubscribes are managed through the system, and the opt-out page is hosted. This page will help you learn more about our opt-out levels.

Since the platform manages your unsubscribes, a default opt-out page is created for you with each account.

Page Requirements

  • Must include options to switch to optout_basic or optout_all status.
  • Form method must be set to post: <form method="post">
  • Once a user submits their options, they must be redirected to a confirmation page indicating that their request was successful. See Build a Thank You/Confirmation Page.
  • When rendering a hosted page within an iframe, we recommend that the hosted page domain has the same domain as the website in order to avoid clickjacking. Verify your hosted page domain in the application (Settings > Setup > Domains). If you'd like to restrict using other websites that do not belong to your domain from rendering hosted pages in an iframe please contact Support.
Please note:
  • Link to the optout page in your template or campaign HTML using Zephyr syntax: <p><a href="{optout_confirm_url}">Unsubscribe here</a></p>
  • Checkboxes, radio buttons, and drop-downs for adding/removing a user from a list will be automatically checked if the user is a member of that list and unchecked if they are not (when the subscriber arrives on that page from an email).
  • When a user unchecks a checkbox or radio button or selects "No" from a drop-down and clicks submit, they are removed from that list, and vice versa.
  • All the options (template vs campaign optout) of the default optout page are only visible when the page is linked to from a message. The best method to preview them is to send a campaign to yourself on a test list.

Create A User Management Page

  1. From Content tab, select Hosted Pages. Then select the New Page button.
  2. The Name of the new page will be part of the URL, so name it something user-friendly. For Category, select "User Management."
  3. Select Create to open the Hosted Page Builder.
  4. See the details in the subsections below for coding and configuring each aspect of the page. You can allow users to manage specific list subscriptions, triggered template optouts, and broader opt-out statuses.

Required

  1. You must include a form with the method set to "post". For example:
    <form method="post">
    ...
    </form>
  1. There must be a submit button.  <input type="submit" value="Button text goes here"/>
  2. Per CAN-SPAM law, in addition to any other options, you must include the option to opt out of all email (optout_all status) or opt out of just campaign email (optout_basic). This is explained in the Opt-Out Status section.
  3. If you will surface Zephyr variable values in a hosted page, it is a best practice to escape any potential HTML characters. You can easily achieve this by wrapping any variable names in the h() function to html-encode these values. For example, {h(brandName)}.

List Management

Allow subscribers to opt-in or opt-down by adding and removing them from specific natural lists which will receive specific campaign types (such as a particular newsletter). Note that the method described in this section adds or removes users from individual natural lists. If your company determines which campaigns a user should receive based on Smart Lists that are dependent on certain user profile values (for example 'all users where weekly=1'), you can instead set these profile values from your form. You may include two types of inputs on your form: radio buttons and/or checkboxes. Checkboxes will allow a user to select multiple lists within a given list group, whereas radio buttons only allow the user to make a single selection within a group. 1. Radio buttons must have name="listgroup[]" and value="". The value is the list name to which the user will be added. In the example below, DailySports is a list name. The listgroup determines whether the radio buttons are related. Those with the same listgroup value will be considered part of the same group. In any case, the user can only select one option from a given group. In the example below, if the sports daily and weekly lists are both a part of listgroup[A]. The subscriber can select either daily or weekly, since only one radio button in a group can be selected at a time. But the subscriber can select a daily or weekly for both sports and fashion, since sports and fashion are in different listgroups.
<p>How often do you want to receive the Sports newsletter?</p>
<form method="post">
   <label><input type="radio" name="listgroup[A]" value="DailySports" />Every day</label> 
   <label><input type="radio" name="listgroup[A]" value="WeeklySports"/>Once a week</label> 
   <label><input type="radio" name="listgroup[A]" value="" />Do not send me the Sports newsletter</label>  
</form> 

<p>How often do you want to receive the Fashion newsletter?</p> 
<form method="post">
   <label><input type="radio" name="listgroup[B]" value="DailyFashion" /> Every day</label> 
   <label><input type="radio" name="listgroup[B]" value="WeeklyFashion"/>Once a week</label> 
   <label><input type="radio" name="listgroup[B]" value="" />Do not send me the Fashion newsletter</label>
</form>
2. Checkboxes add or remove a user from a particular list; they do not belong to groups and need only contain name="lists[]". So if you wanted to give people the option to subscribe to any or all of the choices, you could do:
<p>Which newsletters would you like to receive?</p> 
<form method="post">
   <label><input type="checkbox" name="lists[DailySports]" />Daily Sports newsletter</label> 
   <label><input type="checkbox" name="lists[WeeklySports]" />Weekly Sports newsletter</label> 
   <label><input type="checkbox" name="lists[DailyFashion]" />Daily Fashion newsletter</label> 
   <label><input type="checkbox" name="lists[WeeklyFashion]" />Weekly Fashion newsletter</label>
</form>
If you want to pass an additional list addition or removal that is not visible to the subscriber as a checkbox, you can include the following:
<input type="hidden" name ="lists[List Name]" value="0" />
3. You also must include a button that submits the form and applies the user's changes, like so:
<input type="submit" value="Button text goes here"/> 

Opt-Out Status

There are two values that represent opt-outs:
.optout_basic
This opts the user out of all messages except triggered emails sent via templates you have designated "transactional". Transactional emails include password resets, purchase receipts, and shipping confirmations. This is the recommended status to assign to users who opt out. If a user is opted out using this option, their User Profile will show their status as Optout (Marketing).
.optout_all 
This opts the user out of all messages. This option will prevent the user from receiving any true transactional messages (such as password reset emails), which is why optout_basic is typically preferred. If a user is opted out using this option, their User Profile will show their status as Optout (All). Note: You may see .optout_blast (Opt-out Blast) referenced in the documentation and the UI. This opt-out status was deprecated in 2018 and should not be used.
Add Opt-Out Options
In order to comply with spam laws and treat your users nicely, you must include an opt-out option that at least sets the user to optout_basic status. You can offer an additional option that sets the user to optout_all. Generally, offering optout_all as the only option is not recommended as users will not receive any communication from you, including purchase receipts and password resets. We recommend offering a button that applies the optout_basic status to the user. The code could look something like this:
<form action="" method="post">
  <input type="hidden" name=".optout_basic" value="1" />
  <input name="action" value="Do Not Send Me Marketing Messages" type="submit" />
</form>
<code style="display: none;"><!-- Email Address Changes Within your user management pages, you can include the option for a user to change their email address. On the user profile, the old email address will be overwritten with the new one they have entered. At the same time, a new profile containing the old email address is created (sans user data) as a way of indicating that a user once existed at that address. <ol> <li>Include this HTML and customize it as needed: <pre><code class="lang-markup"><form method="post"> <p>Change your email below.</p> <ul> <li><label>New Email Address: </label><input type="text" name="change_email" value="{email}"></li> </ul> <input type="hidden" name="redirect" value="/manage/thankyou?email={email}"> <input type="submit" value="Change Email" style="width: 140px" > </form>
  1. Change "thankyou" to the name of the hosted redirect page you've created. See Build a Thank You/Confirmation Page for details.
  2. Remember to contact your account manager or support to activate the page if it is the "opt-out" page. Other user management pages don't require activation.
-->

SMS Capture 

Allow a user to opt-out of SMS

SMS Consent

To align with TCPA (Telecommunications Protection Act) regulations, customers must obtain consent for transactional and marketing messages separately. Capturing consent cannot be tied to a single checkbox. The text must also contain explicit language around the use case the consent is tied to (e.g. "I would like to receive marketing messages." or "I would like to receive updates.")
SMS Requirements
  • An input field with name="sms"
  • For marketing consent, a field with name="sms_marketing_status" and value="opt-in"
  • For transactional consent, a field with name="sms_transactional_status" and value="opt-in"
Note: Checkboxes cannot be used for an SMS Capture form. Use radio buttons as in the following examples.
SMS Examples
Use the HTML examples to build an SMS capture page.  Note: Non-US and non-Canadian profiles must enter "+[country code]" when submitting their SMS numbers to have their number captured and to receive messages. You may wish to add a reminder to your SMS signup page. 
SMS Number and Consent Capture
There are two ways to capture user consent in a form.  Radio Button Example
<form method="post">

  <p>SMS: <input name="sms" type="text" /></p>

  <p>Send Transactional SMS

    <label><input type="radio" name="sms_transactional_status" value="opt-in" />Yes</label> 

    <label><input type="radio" name="sms_transactional_status" value="opt-out"/>No</label> 

  </p>

  <p>Send Marketing SMS

    <label><input type="radio" name="sms_marketing_status" value="opt-in" />Yes</label> 

    <label><input type="radio" name="sms_marketing_status" value="opt-out"/>No</label> 

  </p>

  <input type="submit" value="Subscribe" />

</form>
Drop-down Example
<form method="post">

    <p>SMS: <input name="sms" type="text" /></p>

    <p>Send Transactional SMS

      <select name="sms_transactional_status">

        <option value="opt-in">Yes</option>

        <option value="opt-out">No</option>

      </select>

    </p>

    <p>Send Marketing SMS

      <select name="sms_marketing_status">

        <option value="opt-in">Yes</option>

        <option value="opt-out">No</option>

      </select>

    </p>

    <input type="submit" value="Subscribe" />

</form>

Confirmation Page

After a user submits the form, you can choose for the user to be redirected to a hosted thank you/confirmation page or your own URL of choice. You can also use both options: redirect to a hosted page that then redirects to your own URL after a given number of seconds.

Hosted Page
  1. If one does not already exist, create a hosted page of type Other as your Thank You/Confirmation page.
  2. When editing your User Management page, select the Actions tab.
  3. Next to Redirect, select the name of the Other page.
External URL
  1. When editing your User Management page, select the Actions tab.
  2. Next to Redirect, select External URL.
  3. Enter the URL in the box below.

Set a Page to Private

Setting a user management page to private adds an additional unique hash to the URL, which is required to access the page. This prevents an end user from changing the email address in the URL and accessing another user's page. To set a page to private:
  1. Select the Actions tab.
  2. Select Yes next to Keep this page private?
  3.  Save your page.
  4. Follow the linking instructions from the Domains and URLs for Hosted Pages documentation.

Edit the Opt-out Page

  1. Under Content, click Hosted Pages.
  2. If the page is 'locked' (displays a gold lock), then click the page name "opt-out." Otherwise click the wrench icon next to the "opt-out" page.
  3. Edit the HTML in the Code tab.
  4. In the Actions tab, select a page to redirect to from the Redirect dropdown. This page should thank the user once they have submitted the changes. (Make sure to create this 'thank you' page if you haven't already -- please see Build a Thank You/Confirmation Page.)

Link to your User Management Page

You can find the new URL for your page in the main Hosted Pages listing in the platform. The URL will begin with your link domain, if one is configured for your account, and otherwise will begin with cb.sailthru.com. To link to a User Management page in your messaging, follow the format provided in the Domains and URLs for Hosted Pages documentation.

Contact us

Top