Some users have noticed that Microsoft Outlook allows the gray background to show through into the body of the email. To change this, modify all the customized HTML email templates as follows:
The top of each HTML template looks like:
<html>
<head>
<style type="text/css">
body {
font-family: Lucida Sans, Lucida Grande, Trebuchet MS, Helvetica, san-serif;
font-size: 13pt;
color: #333;
background-color: #879193;
}
...
Change the background-color line (3rd from the bottom) to FFFFFF (6 F's) so the line looks like this:
background-color: #FFFFFF;
This changes the background color from grey to white.