SOLVED

Move unsubscribe link from the footer to the body of email

Go to solution
Anonymous
Not applicable

Move unsubscribe link from the footer to the body of email

Hello,

Is it possible to create a custom Unsubscribe link in the body of the email keeping for it the same functionality of the Unsubscribe link in the footer of the email for 'non operationa email'? 

If yes, how can I do it?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Move unsubscribe link from the footer to the body of email

Yes, you would create a hyperlink with your text and point the link to this:

%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##.

You can find this token for the unsubscribe link  in the Admin section > Email > Unsubscribe Text.

Note that you wlil want to update the %mkt_opt_out_prefix% part with your domain.

For example, if you were to create an HTML text link, it would look something like this:

<a href="http://www.YOURDOMAIN.com/UnsubscribePage.html?mkt_unsubscribe=1&amp;mkt_tok=##MKT_TOK##">Unsubscribe</a>

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Re: Move unsubscribe link from the footer to the body of email

Yes, you would create a hyperlink with your text and point the link to this:

%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##.

You can find this token for the unsubscribe link  in the Admin section > Email > Unsubscribe Text.

Note that you wlil want to update the %mkt_opt_out_prefix% part with your domain.

For example, if you were to create an HTML text link, it would look something like this:

<a href="http://www.YOURDOMAIN.com/UnsubscribePage.html?mkt_unsubscribe=1&amp;mkt_tok=##MKT_TOK##">Unsubscribe</a>
Anonymous
Not applicable

Re: Move unsubscribe link from the footer to the body of email

Thanks for the help!