Re: [PHP] Sending mail with Outlook high priority

2008-11-04 Thread Richard Heyes
> Is there any PHP functionality for sending mail and attaching a high > priority to the mail item ? My htmlMimeMail code will do this for and, make it much easier too. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP Genera

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Per Jessen wrote: Edward Diener wrote: Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. Thanks for pointing this header out. My search for "X-

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Per Jessen wrote: Edward Diener wrote: Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. Thanks for pointing this header out. My search for "X-

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Per Jessen
Edward Diener wrote: > Is there any PHP functionality for sending mail and attaching a high > priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. > In Outlook ( and Outlook Express ) there is the notion of a high > prior

[PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? In Outlook ( and Outlook Express ) there is the notion of a high priority mail item, but I do not know if this corresponds to anything in an RFC for mail. Nor do I know how to mimic this in PHP. If