RE: [PHP] AOL Email client

2003-08-14 Thread Mark Roberts
that! Graphics, Scripting, Databases, shopping carts mailto:[EMAIL PROTECTED] -Original Message- From: Jennifer Goodie [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 8:49 PM To: Mark Roberts; [EMAIL PROTECTED] Subject: RE: [PHP] AOL Email client > Here is what my header l

RE: [PHP] AOL Email client

2003-08-14 Thread Roberts, Mark (Tulsa)
, August 07, 2003 8:49 PM To: Mark Roberts; [EMAIL PROTECTED] Subject: RE: [PHP] AOL Email client > Here is what my header look like: > > $headers .= "MIME-Version: 1.0\r\n"; > $headers .= "Content-type: text/pl

RE: [PHP] AOL Email client

2003-08-14 Thread Mark Roberts
PROTECTED] -----Original Message----- From: Jennifer Goodie [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 8:14 PM To: php list; [EMAIL PROTECTED] Subject: RE: [PHP] AOL Email client > I am using php mail and setting all my $headers info to show From:, To:, What does your call to

RE: [PHP] AOL Email client

2003-08-14 Thread Chris Shiflett
--- Mark Roberts <[EMAIL PROTECTED]> wrote: > $headers .= "From: ".$name." <".$email.">\r\n"; My guess is that this line is what is causing your problems. Try this instead: $headers .= "From: \"$name\" <$email>\r\n"; The difference is (aside from not using concatenation) that the name is quoted,

Re: [PHP] AOL Email client

2003-08-08 Thread Miles Thompson
At 07:57 PM 8/7/2003 -0500, php list wrote: I am using php mail and setting all my $headers info to show From:, To:, etc. It work perfectly on my computer. I use MS Outlook. I am doing this for a client who received his email via his aol account. When he receives the email, the email comes in with

RE: [PHP] AOL Email client

2003-08-07 Thread Jennifer Goodie
> Here is what my header look like: > > $headers .= "MIME-Version: 1.0\r\n"; > $headers .= "Content-type: text/plain; > charset=us-ascii\r\n"; > $headers .= "From: ".$name." <".$email.">\r\n"; > $headers .= "To

RE: [PHP] AOL Email client

2003-08-07 Thread Jennifer Goodie
> I am using php mail and setting all my $headers info to show From:, To:, What does your call to mail() look like? How are you formatting you headers? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php