Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Email Preheader

Avatar

Level 4

Hello,

Is anyone aware of a way to utilize a 'preheader' within an email delivery? I am unable to find any documentation so i'm assuming Adobe has a different name for it.

For reference here is a fairly succinct definition:

A preheader is the short summary text that follows the subject line when an email is viewed in the inbox. Many mobile, desktop and web email clients provide them to tip you off on what the email contains before you open it.

Thank you,

Robbie

1 Accepted Solution

Avatar

Correct answer by
Level 5

There is no place in the UI that I can think of to apply it. We just go into the SOURCE tab in the bottom left of the delivery to edit the HTML. Or Before you upload the HTML you can apply it in the HTML editor then upload it.

Here is where we put the preheader. Right after the closing body tag.

<span style="display: none !important; mso-hide:all;">HERE IS SOME PREHEADER TEXT</span>

View solution in original post

4 Replies

Avatar

Correct answer by
Level 5

There is no place in the UI that I can think of to apply it. We just go into the SOURCE tab in the bottom left of the delivery to edit the HTML. Or Before you upload the HTML you can apply it in the HTML editor then upload it.

Here is where we put the preheader. Right after the closing body tag.

<span style="display: none !important; mso-hide:all;">HERE IS SOME PREHEADER TEXT</span>

Avatar

Level 2

Is there a way to query the pre-header text from the backend tables? Will it be in the Delivery schema?

Avatar

Level 4

Thank you David!

It didn't work after the closing body tag, but it did work if we put it just after the body open tag if we removed the mirror page link (which is before the doctype). With the mirror page element in place though, we needed to place that code above it.

So essentially it goes

- Preheader

- Mirror page

- Doc Type

- Head

- Body

Long story short it is working now, so thank you!

Avatar

Level 5

You are right, it should be right after the opening body tag. Your order looks great.