Skip to main content
March 6, 2014
Question

Newsletter email template with TOC hyperlinks

  • March 6, 2014
  • 2 replies
  • 1272 views
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.
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

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!