diff --git a/source/Classroom/Basics/Marketing_Campaigns/default_mc_tags.md b/source/Classroom/Basics/Marketing_Campaigns/default_mc_tags.md new file mode 100644 index 0000000000..c6e534bbf8 --- /dev/null +++ b/source/Classroom/Basics/Marketing_Campaigns/default_mc_tags.md @@ -0,0 +1,85 @@ +--- +st: + published_at: 2016-06-20 + type: Classroom +seo: + title: Unsubscribe, Sender ID, and Weblink default Tags + description: Learn more about the default tags that you can use in Marketing Campaigns... + keywords: tag, merge, replace, custom, feilds, unsubscribe, weblink +title: Unsubscribe, Sender ID, and Weblink default Tags +weight: 0 +layout: page +navigation: + show: true +--- + +This article aims to list and briefly explain the default Tags you may find yourself wanting to use in any given Campaign or Template. This covers the Tags for Unsubscribe, Sender Identity info, and the "view in browser" Weblink. + +##Unsubscribe Tags + +**[Unsubscribe]** - Used to place the clickable link that allows recipients to opt out of emails. + +{% codeblock lang:html %} +Click here to Unsubscribe +{% endcodeblock %} + +**[Unsubscribe_Preferences]** - Takes the recipient to a landing page where they can view all of your default Unsubscribe Groups, as well as unsubscribe from those and any other groups they are part of. + +{% codeblock lang:html %} +Click here to update your email preferences. +{% endcodeblock %} + +##Sender Identity Information + +**[Sender_Name]** - Inserts the the Sender Name from the Sender ID chosen for the Campaign. + +**[Sender_Address]** - Inserts the the physical address from the Sender ID chosen for the Campaign. Required for CAN SPAM compliancy. + +**[Sender_City]** - Inserts the the City from the Sender ID chosen for the Campaign. Required for CAN SPAM compliancy. + +**[Sender_State]** - Inserts the the State from the Sender ID chosen for the Campaign. Required for CAN SPAM compliancy. + +**[Sender_Zip]** - Inserts the the Zip code from the Sender ID chosen for the Campaign. Required for CAN SPAM compliancy. + +##Miscellaneous Tags + +**[Weblink]** - Places the link to allow the recipient to view the email in their browser. + +{% codeblock lang:html %} +Click here to view this email in your web browser. +{% endcodeblock %} + +###Migrating from Legacy Newsletter? Use this handy chart to update your tags! + + + + + + + + + + +
Legacy Newsletter TagMarketing Campaigns Tag
[%from_name%][Sender_Name]
[%address%][Sender_Address]
[%city%][Sender_City]
[%state%][Sender_State]
[%zip%][Sender_Zip]
[weblink][Weblink]
[unsubscribe][Unsubscribe]
+ +{% info %} +`[Unsubscribe_Preferences]` is a new tag introduced in Marketing Campaigns! +{% endinfo %} + +###Need to add tags to the Design editor? Use the link button! + +Be sure that you don't link the text [unsubscribe] to the tag using the **link button**. This will cause our system to replace the plain text tag first instead of the one inside of the HTML A tag. Incorrectly linking your unsubscribe tag will cause us to place the plain/text version of the unsubscribe link, which is significantly larger looking link. + +Always link your unsubscribe tag to a word or string of text instead. + +_Incorrect:_ + +{% codeblock lang:html %} +[unsubscribe] +{% endcodeblock %} + +_Correct:_ + +{% codeblock lang:html %} +Click here to unsubscribe +{% endcodeblock %}