How can I add a font to a php script so the results has colored characters
when read in Outlook?
<?php
$body = " <html><body><fo nt color = '#0000ff'>test</font>This did not
work.</body><html>";
$subjectF = "subject";
mail('email address', $subjectF, $body);
?>
when read in Outlook?
<?php
$body = " <html><body><fo nt color = '#0000ff'>test</font>This did not
work.</body><html>";
$subjectF = "subject";
mail('email address', $subjectF, $body);
?>
Comment