Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Forums > Browsers & Mail

Vista - E-mail Fonts

Reply
 
Old 08-02-2008   #1 (permalink)


Vista Home Premium 32bit
 
 

E-mail Fonts

I know this might sound a stupid question, but when you write a new message in Windows Mail - by default it starts with Arial fonts. Can you change this default to your own particular liking and save it, so when you start a new message,it starts with your choice automatically?
Thanks.

My System SpecsSystem Spec
Old 08-02-2008   #2 (permalink)


Vista x64 Ultimate SP2, Windows 7 Ultimate x64
 
 

Re: E-mail Fonts

Hi Wiffy, and welcome to Vista Forums.

Not by default, but you can setup a blank email the way you want it and click File and Save to save it in the Drafts folder as a template. When you want to use it to send a email, just open it from within the Drafts folder to fill out and send.

Hope this helps,
Shawn
My System SpecsSystem Spec
Old 08-03-2008   #3 (permalink)


Vista Home Premium 32bit
 
 

Re: E-mail Fonts

Thank you Shawn - good idea - will do
My System SpecsSystem Spec
Old 08-03-2008   #4 (permalink)


Vista Home Premium 32-bit & Vista Ultimate 64-bit both Service Pack 2 W7 Pro RTM 7600 32 & 64
 
 

Re: E-mail Fonts

Hi Wiffy,

This IS possible, but it involves editing the registry. To do so, follow these instructions.

1) Close 'Windows Mail'. You can also leave this open, but changes will not take place until you restart this program.
2) Open the 'Registry Editor' by clicking on the start orb and typing 'regedit' into the search box and then pressing enter/return.
3) Browse to the following key: 'HKEY_CURRENT_USER\Software\Microsoft\Windows Mail\Mail'.
4) In the right hand column there are 2 entries, viz 'Font Name' and 'Font Size'. It is these that determine the default settings.
5) For example, to change the default font to 'Batang', right click on 'Font Name' and select 'Modify...'. In the 'Edit String' dialogue, type 'Batang' in the box under 'Value data:' and click 'OK'.
6) Likewise, to change the default font size, right click on 'Font Size' and select 'Modify...'. In the 'Edit DWORD (32-bit) Value' dialogue, click the required option under 'Base' and then enter the required value into the box under 'Value data:'. Click 'OK'.
7) Finally, close the 'Registry Editor'.
8) When you next open 'Windows Mail', the default font settings will be changed to what you have set them to according to the above instructions.

Code:
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows Mail\Mail]
 
"Font Size"=dword:0000000c
"Font Name"="Batang"
This piece of code sets the default font to 'Batang' with a size of 12. You can change the font name and size to whatever you choose.

Code:
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows Mail\Mail]
 
"Font Size"=dword:00000009
"Font Name"="Arial"
This code reverts the font settings back to their defaults.

Copy and paste these bits of code SEPARATELY into 'Notepad' and save them with a '.reg' extension. Give them meaningful names for example, 'Mail Batang 12.reg' and 'Mail Default.reg' respectively. You can then click on these files to merge them into the registry. Note that you will need to repeat the procedure for each user separately.

Code:
@ECHO OFF
REG ADD "HKCU\Software\Microsoft\Windows Mail\Mail" /v "Font Size" /t REG_DWORD /d 0x00000009 /f
REG ADD "HKCU\Software\Microsoft\Windows Mail\Mail" /v "Font Name" /t REG_SZ /d Arial /f
START WinMail
If you wish to automate the procedure, copy the code above into 'Notepad' and save it with a '.bat' extension. Give it a meaningful name. If you wish, save a number of copies of this so that you can start 'Windows Mail' automatically with the required font settings without having to delve into the registry every time. For example, the code above could be called 'Mail Default.bat'. Note that the details highlighted in RED are the only things that need changing to suit your requirements. If the font name includes a SPACE (e.g. 'Arial Black'), then it will need enclosing in quotation marks ("Arial Black").

Code:
@ECHO OFF
REG ADD "HKCU\Software\Microsoft\Windows Mail\Mail" /v "Font Size" /t REG_DWORD /d 0x0000000c /f
REG ADD "HKCU\Software\Microsoft\Windows Mail\Mail" /v "Font Name" /t REG_SZ /d Batang /f
START WinMail
This code could be saved as 'Mail Batang 12.bat'.

Hopefully, this should help you.
Dwarf

Last edited by Dwarf; 08-03-2008 at 01:37 PM.. Reason: Added registry and batch file code.
My System SpecsSystem Spec
Old 08-03-2008   #5 (permalink)


Vista x64 Ultimate SP2, Windows 7 Ultimate x64
 
 

Re: E-mail Fonts

Your welcome Wiffy. Dwarf's idea is a good one if you wanted it set this way all the time until you change it again.
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Fonts - signature font lost in list of fonts Vista mail
Fonts on Windows Mail Vista mail
Windows Mail fonts blurry Vista mail
Fonts in Windows Mail Too small Vista mail
Fonts in Windows Mail Too small Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46