You mean, 'how do I send an HTML email' right? I dont see how you can set a
font unless its HTML or RichText.
<?
$email_address = '[EMAIL PROTECTED]';
$email_return_address = '[EMAIL PROTECTED]';
$email_header = "Content-Type: text/html;\nFrom: $email_return_address";
$email_body = "<html><body>hello? </body></html>\n";
mail($email_address, $email_subject, $email_body, $email_header);
?>
This should work...
--
Chris Lee
Mediawaveonline.com
[EMAIL PROTECTED]
"Jeff Gannaway" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Since so many people are now using MS Outlook for their e-mail which
> defaults to a proportional-width font (and I think newer Eudoras do too),
> I've found times that I need to specify a fixed-width font (IE Courier,
> Courier New) in so that columns of financials line up.
>
> How do I do this with dynamically created data generated and mailed out
> with a PHP script?
>
> Thanks,
> Jeff Gannaway
> _______________________________________________________
>
> 2001 Wall Calendars....
> * Art, Jazz, Blues, Women's, African-American.
> * Everyday Discounts.
> * Excellent paper and reproductions.
>
> And as always, a great selection of abstract,
> contemporary and African-American art prints.
>
> PopStreet.com is your avenue to art.
> http://www.popstreet.com
> _______________________________________________________
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]