Re: HTML code help

Anonymous
Not applicable

HTML code help

Is anyone willing to help me develop a short bit of code for our subscription center?

Here's our current code:
<p><font face="Verdana" size="1">This email was sent to {{lead.Email Address}}. <a href="%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##">Unsubscribe</a> 
</font> <p>

I just want to add a piece on the end that says "Manage your preferences." Those words would link here: here: http://info.healthcare.us.swisslog.com/SubscriptionCenter.html

I clearly don't know how to write HTML code and this seems pretty simple, but I've tried doing research and haven't been able to figure this out. Any help you can provide would be appreciated!

Kate 
Tags (1)
3 REPLIES 3
Nicole_Mossinge
Level 7

Re: HTML code help

Try this:

<p><font face="Verdana" size="1">This email was sent to {{lead.Email Address}}. <a href="%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##">Unsubscribe</a>. <a href="http://info.healthcare.us.swisslog.com/SubscriptionCenter.html?mkt_tok=##MKT_TOK##">Manage your preferences</a>.
</font><p>
Anonymous
Not applicable

Re: HTML code help

Try this:
<p><font face="Verdana" size="1">This email was sent to {{lead.Email Address}}. <a href="%mkt_opt_out_prefix%UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=##MKT_TOK##">Unsubscribe</a> 
</font> <p>
<a href="http://info.healthcare.us.swisslog.com/SubscriptionCenter.html">Manage your preferences.</a>
Anonymous
Not applicable

Re: HTML code help

OMG thank you both so much! Nicole's worked so I didn't need to try Murtza's but I still appreciate it just the same. I need to learn code... THANK YOU for taking time out of your day to help us!