How to set Fonts in Outlook

G

Gary Underhill

I would like to set the fonts in Outlook (when creating a new message
and when replying to a message) to Verdana. How would i go about
doing this? Do I need to use VBA or can i do it in VB Script and run
it standalone?

I would like to do this just after the Outlook installation so that
the user of the machine uses Verdana as a standard font.

Thanks,
Gary
 
E

Eric Legault [MVP - Outlook]

If you only need to change the font from the default font in Settings to a
different one for specific messages, than you need to use code. If the
message format is in HTML, you have to edit the HTML source to change the
font.

Furthermore, the Outlook Object Model doesn't provide access to RTF
properties. If you are editing Rich Text messages, you need to use a
third-party object model that interfaces with Outlook called Redemption
(http://www.dimastr.com); it has SafeInspector objects that allows full
access to formatting the text in a message.

Otherwise, to change the default font for a large number of Outlook
installations, or to change the default font when installing, look into the
Office Resource Kit and Group Policies to help you achieve this.
 
Top