SOLVED

View as webpage link | How to edit meta title

Go to solution
jing097
Level 1

View as webpage link | How to edit meta title

Hello all,

 

Does anyone know how to edit the meta title of the web page email? Right now, the meta title is displaying the name of the email template (as seen in the screenshot below).

 

Screenshot 2023-03-16 at 5.04.48 PM.png

Marketo support has directed us to the following links, but we are still unable to locate the field where we can change the meta title. 
https://www.marketingrockstarguides.com/category/marketo-user-guide/page/11/
https://experienceleague.adobe.com/docs/marketo/using/product-docs/administration/email-setup/edit-t... 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Dave_Roberts
Level 10

Re: View as webpage link | How to edit meta title

Another option for this might be to make a global variable at the template level that would allow you to populate the <title> element at the individual email (asset) level. 

 

Something like this might do the trick:

<head>
...
<meta class="mktoString" id="Email-Title" mktoName="Email Title" default="CompanyName">
<title>${Email-Title}</title>
...
</head>

 

Likewise, if you wanted to go the token route, you could use something that looked like this:

<head>
...
<title>{{my.Email Title:default=Company Name}}</title>
...
</head>

and then setup the token in your program folder in Marketing Activities.

View solution in original post

2 REPLIES 2
Darshil_Shah1
Level 10 - Community Advisor

Re: View as webpage link | How to edit meta title

You need to change the <title> tag in your email HTML, but making any changes to the email HTML would disassociate the email asset from the template. So ideally, you should change the <title> tag in the email template and set it to a static hard-coded value that'd be used for all the email assets built using it or set it to a custom my token in case you'd like different title values for different email assets created using the same template and then set the token in the program/folder level.

Dave_Roberts
Level 10

Re: View as webpage link | How to edit meta title

Another option for this might be to make a global variable at the template level that would allow you to populate the <title> element at the individual email (asset) level. 

 

Something like this might do the trick:

<head>
...
<meta class="mktoString" id="Email-Title" mktoName="Email Title" default="CompanyName">
<title>${Email-Title}</title>
...
</head>

 

Likewise, if you wanted to go the token route, you could use something that looked like this:

<head>
...
<title>{{my.Email Title:default=Company Name}}</title>
...
</head>

and then setup the token in your program folder in Marketing Activities.