Re: Change outgoing email font?
I got frustrated by this and started looking at the source of the e-mails sent via the Exchange mail app (Nexus 5, stock mail client). I was thinking that the Mail app might be sending e-mail in plaintext instead of HTML since plaintext e-mails show up differently in Outlook. This is what I found instead:
Emails sent from Outlook (desktop) and Gmail (website) have the following HTML tags above their text:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Emails from the Android Mail client have the following HTML tags:
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
Someone in my company sent me an e-mail. I responded via my phone. It looks like this:
"All the e-mail Header text"
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
"What I wrote"
<div style="direction:ltr; font-family:Tahoma; color:#000000; font-size:10pt">
"What he wrote"
<p class="fd4917f4-0195-4fde-bff6-1e0ce1e7456c"><font color="silver" size="1" face="Verdana" style="font-family:Verdana; color:silver; font-size:7pt"> </p>
"A footer added to all messages by our Exchange server asking you to save trees and not print this e-mail"
In the mail app on my phone my text and his text are the same but the footer is different. In Outlook my text, his text, and the footer look different.
That tells me that the e-mail app on our phones
1) Is sending html email
2) Can display
some alternate fonts and styles
3) Is sending e-mail in an ascii character set instead of UTF, causing them to be displayed in a non-default manner in Outlook.
This setting would have to be changed by the mail app developers, OR by a third-party hack to the mail app or outgoing mail flow (something that could be developed for the Xposed Framework on a rooted phone, maybe?) I don't know of anyone that has written anything like that but I intend to see if I can find one.