diff options
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/email-customers.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index 4e4c15f2a..201aed428 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -47,7 +47,7 @@ <INPUT TYPE="hidden" NAME="html_body" VALUE="<% $cgi->param('html_body') |h %>"> <TR> <TD ALIGN="right" VALIGN="top">Message (HTML display): </TD> - <TD BGCOLOR="#e8e8e8" ALIGN="left"><% $cgi->param('html_body') %></TD> + <TD CLASS="background" ALIGN="left"><% $cgi->param('html_body') %></TD> </TR> % my $text_body = HTML::FormatText->new(leftmargin=>0)->format( @@ -58,7 +58,7 @@ <INPUT TYPE="hidden" NAME="text_body" VALUE="<% $text_body |h %>"> <TR> <TD ALIGN="right" VALIGN="top">Message (Text display): </TD> - <TD BGCOLOR="#e8e8e8" ALIGN="left"><PRE><% $text_body %></PRE></TD> + <TD CLASS="background" ALIGN="left"><PRE><% $text_body %></PRE></TD> </TR> </TABLE> |