Re: [PHP] Mail From option in PHP.ini

2003-07-21 Thread Peter Torraca
On 07/18/2003 12:00 PM, Brian S. Drexler wrote: Ok, I want to specify who the mail is coming from by using the sendmail_path option in the PHP.ini. I've added the [EMAIL PROTECTED] to it, but I want to be able to dynmaically change [EMAIL PROTECTED] to [EMAIL PROTECTED] or whatever else. Anyo

Re: [PHP] Mail From option in PHP.ini

2003-07-20 Thread Curt Zirzow
* Thus wrote Lowell Allen ([EMAIL PROTECTED]): > return-path for emails is something like "Return-Path: > <[EMAIL PROTECTED]>". I had accepted that I could not change > the return-path value with PHP, but reading about this fifth parameter > renewed my hope that I could. > > I tried adding a fifth

Re: [PHP] Mail From option in PHP.ini

2003-07-20 Thread Lowell Allen
> From the php website, it appears that the [EMAIL PROTECTED] can be > put in the fifth parameter of the mail() function: > > Example 3. Sending mail with extra headers and setting an additional > command line parameter. > > mail("[EMAIL PROTECTED]", "the subject", $message, >"From: [EMAIL PR

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
GREAT!!! I guess I need to RTFM...:-) Thanks again for all your help everyone! -Original Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:38 AM To: [EMAIL PROTECTED]; 'M.A.Bond'; 'sven'; 'php-general' Subject: RE: [PHP] Mail From

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Mark
n S. Drexler" <[EMAIL PROTECTED]> wrote: > Yes, sorry...forgot to include that one...:-) > > -Original Message- > From: M.A.Bond [mailto:[EMAIL PROTECTED] > Sent: Friday, July 18, 2003 11:31 AM > To: 'sysadmin'; 'sven'; php-general > Subje

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
Yes, sorry...forgot to include that one...:-) -Original Message- From: M.A.Bond [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:31 AM To: 'sysadmin'; 'sven'; php-general Subject: RE: [PHP] Mail From option in PHP.ini I take it you've also tried setting

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread M.A.Bond
I take it you've also tried setting Reply-To: ?? Same format as From: Mark -Original Message- From: Brian S. Drexler [mailto:[EMAIL PROTECTED] Sent: 18 July 2003 16:25 To: 'sven'; php-general Subject: RE: [PHP] Mail From option in PHP.ini No, I tried this too. Here is

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
'Return-Receipt-To' => '"' .$FullName.'" <'.$Email.'>', //'Return-Path' => $Email, 'Subject' => 'Your Quote # '.$Theresult ); The comm

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
From: skate [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:16 AM To: [EMAIL PROTECTED]; 'CPT John W. Holmes'; [EMAIL PROTECTED] Subject: Re: [PHP] Mail From option in PHP.ini the sendmail_path in php.ini is to do with where abouts the sendmail program is located, not where

Re: [PHP] Mail From option in PHP.ini

2003-07-18 Thread sven
M group > so it can only be set in the php.ini or httpd.conf...Thanks for the > suggestion though... > > -Original Message- > From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] > Sent: Friday, July 18, 2003 11:09 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subje

Re: [PHP] Mail From option in PHP.ini

2003-07-18 Thread skate
should be none-the-wiser unless he really wants to sift through the headers. - Original Message - From: "Brian S. Drexler" <[EMAIL PROTECTED]> To: "'CPT John W. Holmes'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, July 18, 2003 4:

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
y 18, 2003 11:09 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] Mail From option in PHP.ini > Ok, I want to specify who the mail is coming from by using the sendmail_path > option in the PHP.ini. I've added the [EMAIL PROTECTED] to it, but I want > to be able to d

Re: [PHP] Mail From option in PHP.ini

2003-07-18 Thread CPT John W. Holmes
> Ok, I want to specify who the mail is coming from by using the sendmail_path > option in the PHP.ini. I've added the [EMAIL PROTECTED] to it, but I want > to be able to dynmaically change [EMAIL PROTECTED] to [EMAIL PROTECTED] or > whatever else. Anyone have any ideas how I can do this? I'm pu

[PHP] Mail From option in PHP.ini

2003-07-18 Thread Brian S. Drexler
Ok, I want to specify who the mail is coming from by using the sendmail_path option in the PHP.ini. I've added the [EMAIL PROTECTED] to it, but I want to be able to dynmaically change [EMAIL PROTECTED] to [EMAIL PROTECTED] or whatever else. Anyone have any ideas how I can do this? I'm pulling th