Skip to main content
March 6, 2014
问题

Newsletter email template with TOC hyperlinks

  • March 6, 2014
  • 2回复
  • 1279查看
Has anyone created a newsletter template in a 2-column layout that includes a table of contents with hyperlinks to the various sections?  I searched the Community but couldn't find quite what I need; and I'm not knowledgeable enough with HTML to create my own template from some of the standard 2-column layouts in Marketo.
此主题已关闭回复。

2回复

March 7, 2014
Hey Megann,

You just need to add a few tags to your HTML to build out some anchor links. In our newsletter, we have a table of contents at the top with a list of links, each one has an anchor link like this:

<a href="#item1">Item 1 description</a>

Then, in the section you want to reference, include this:

<a name="item1"></a>

So on and so forth for other sections you wish to link up ("item2", etc.). Hopefully that does the trick!
March 10, 2014
Thank you, that helps!