
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2018 08:55 PM
Hi Team,
My HR Team have a standard font and size for their correspondence to out companies employees.
When we use the Email Client (through the three dots)
the HTML font is always with no formatting and very small:
Even if I use a 'Quick message' it doesn't force any additional text to the same font.
Has anyone figured out a way to set this to a standard font, like Arial 12 or similar?
Thanks
Carl.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- 4,911 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-02-2018 03:50 AM
Hello,
Create a client template for the table (and set additional conditions if needed).
In th client template, open the script part and add:
<style type="text/css"><!--
p {
font-size: 24px;
}
--></style>
<p></p>
Of course adjust to what you need. As ServiceNow always adds <p> around all text, this will set standard type for that text unless told otherwise.
Hope this helps and resolves your issue.
With regards
Anton Vettefyr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-02-2018 03:50 AM
Hello,
Create a client template for the table (and set additional conditions if needed).
In th client template, open the script part and add:
<style type="text/css"><!--
p {
font-size: 24px;
}
--></style>
<p></p>
Of course adjust to what you need. As ServiceNow always adds <p> around all text, this will set standard type for that text unless told otherwise.
Hope this helps and resolves your issue.
With regards
Anton Vettefyr

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-03-2018 03:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2018 01:23 AM
Hello,
Sorry, wrong of me. I saw in your screenshot that the field in your Client Template is "Body Text" instead of "Body HTML".
You need to change "Content Type" from Plain Text to HTML.
That lets you edit the HTML for notifications and templates (and all fields with the tinyMCE HTML editor options).
I can't see if you have the option from your screenshot (in our OOB Client Template form it's almost at the top).
This should let you set the code for your notification.
With regards
Anton Vettefyr

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-07-2018 05:23 PM
Thanks Anton - changing to HTML worked a treat, didn't even know there was a plain and html version...
Appreciate your help
Carl.