signup_confirm
Description
Returns a URL to confirm signup in a transactional and campaign mail. To override the default, resulting “Thank You” page displayed after a user clicks, create a new Hosted Page named “signup-confirm” in the “Other” type of Hosted Pages.
Copy
string signup_confirm( mixed lists )
Returns a url that’s used to opt an email address into a list or lists. You must pass the lists as an array.
Example
{signup_confirm(['myList1','myList2','myList3'])}
---> Creates an email verification url that will add the user to 'myList1', ''myList2', and 'myList3'.
Lists can be passed dynamically via the API. For example, if you have a variable called “signup_lists” from the send or event API calls, the Zephyr would look like this:
{signup_confirm(signup_lists)}