Page 1 of 1
sendmail_from
Posted: Sat Nov 06, 2004 7:45 am
by Shendemiar
Php_info.php Gives me this:
sendmail_from
noreply@x.x no value
But mail sent from that site is FROM something totally different.
Does it take time to update those settings, or what's the case here?
Posted: Sat Nov 06, 2004 8:11 am
by markl999
Is the site running on windows?
sendmail_from is a win32 only setting.
Posted: Sat Nov 06, 2004 10:32 am
by Shendemiar
It's on Linux.
Any way i could define the "sender" ?
Posted: Sat Nov 06, 2004 10:37 am
by Shendemiar
What is "mail.force_extra_parameters" ?
Posted: Sat Nov 06, 2004 1:44 pm
by markl999
Just use the From: header when generating the email.
http://php.net/mail has examples.
Posted: Sat Nov 06, 2004 3:57 pm
by Shendemiar
markl999 wrote:Just use the From: header when generating the email.
http://php.net/mail has examples.
I've tried but it's too complicated for me

Posted: Sat Nov 06, 2004 4:05 pm
by John Cartwright
$headers .= "FROM: <$from>\n";
..............
Posted: Sat Nov 06, 2004 4:08 pm
by Shendemiar
Damn. i've been reading the F****g wrong manual page

Posted: Sat Nov 06, 2004 4:12 pm
by Shendemiar
Got it, thanks for your patience
