SOLVED

Send Marketo Email - Change Default Font

Go to solution
Benjamin_Ortiz1
Level 4

Send Marketo Email - Change Default Font

When we send a Marketo Email through Salesforce the default font option is Tahoma - http://screencast.com/t/6v7jE7jYkaf. Anyone know how to change the default so we don't have to select from the pick list everytime we send an email.

Thanks
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Send Marketo Email - Change Default Font

If your senders select a Sales Insight email template, the Email Template upon which it's based controls the font and will override that default setting.  Below is the HTML in the <head> section we use to select the Calibri font that is the default in our Outlook emails.

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <STYLE type=text/css>
      P {FONT-FAMILY: Calibri; FONT-SIZE: 11pt}
      LI {FONT-FAMILY: Calibri; FONT-SIZE: 11pt}
    </STYLE>
  </head>

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Re: Send Marketo Email - Change Default Font

If your senders select a Sales Insight email template, the Email Template upon which it's based controls the font and will override that default setting.  Below is the HTML in the <head> section we use to select the Calibri font that is the default in our Outlook emails.

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <STYLE type=text/css>
      P {FONT-FAMILY: Calibri; FONT-SIZE: 11pt}
      LI {FONT-FAMILY: Calibri; FONT-SIZE: 11pt}
    </STYLE>
  </head>