Re: [PHP] PHP Send Mail Main headers.

2003-03-27 Thread -{ Rene Brehmer }-
On Mon, 24 Mar 2003 18:51:47 +0800, Jason Wong wrote about Re: [PHP] PHP Send Mail Main headers. what the universal translator turned into this: On Monday 24 March 2003 18:35, Don Read wrote: On 24-Mar-2003 Philip J. Newman wrote: $headers .= MIME-Version: 1.0\r\n; $headers .= Content-type

Re: [PHP] PHP Send Mail Main headers.

2003-03-27 Thread Jason Wong
On Wednesday 26 March 2003 23:01, -{ Rene Brehmer }- wrote: CRLF is not an overkill. That is the specs. Some MTAs (sendmail in particular) will treat a single LF (\n) as a line termination as thus you can get away with it. On unix machines you can do with just a linefeed, on CPM/DOS-based

Re: [PHP] PHP Send Mail Main headers.

2003-03-27 Thread Don Read
On 27-Mar-2003 Jason Wong wrote: On Wednesday 26 March 2003 23:01, -{ Rene Brehmer }- wrote: CRLF is not an overkill. That is the specs. Some MTAs (sendmail in particular) will treat a single LF (\n) as a line termination as thus you can get away with it. On unix machines you can do

Re: [PHP] PHP Send Mail Main headers.

2003-03-27 Thread Jason Wong
On Friday 28 March 2003 03:24, Don Read wrote: We're getting way off-topic here. Not entirely accurate. It has to do with how you connect to the MTA. RFC822 only applies to SMTP 'on the wire' and internal delivery formats are outside the scope. There are alot of UUCP class 1 sites out

[PHP] PHP Send Mail Main headers.

2003-03-24 Thread Philip J. Newman
$headers .= MIME-Version: 1.0\r\n; $headers .= Content-type: text/html; charset=iso-8859-1\r\n; $headers .= From: .$from_name. .$from_address.\r\n; $headers .= Reply-To: .$from_name. .$from_address.\r\n; $headers .= X-Priority: 3\r\n; $headers .= X-MSMail-Priority: Normal\r\n; $headers .=

RE: [PHP] PHP Send Mail Main headers.

2003-03-24 Thread Don Read
On 24-Mar-2003 Philip J. Newman wrote: $headers .= MIME-Version: 1.0\r\n; $headers .= Content-type: text/html; charset=iso-8859-1\r\n; $headers .= From: .$from_name. .$from_address.\r\n; $headers .= Reply-To: .$from_name. .$from_address.\r\n; $headers .= X-Priority: 3\r\n; $headers .=

Re: [PHP] PHP Send Mail Main headers.

2003-03-24 Thread Jason Wong
On Monday 24 March 2003 18:35, Don Read wrote: On 24-Mar-2003 Philip J. Newman wrote: $headers .= MIME-Version: 1.0\r\n; $headers .= Content-type: text/html; charset=iso-8859-1\r\n; $headers .= From: .$from_name. .$from_address.\r\n; $headers .= Reply-To: .$from_name. .$from_address.\r\n;