Re: [PHP] override nobody@example.com

2002-01-14 Thread Vlasyuk Valera
i perefer to use such mail code: $pipe=popen("/usr/sbin/sendmail -f [EMAIL PROTECTED] -i [EMAIL PROTECTED]","w"); $email_body="Customer name: $customer_name email: $email features: $features"; if ($pipe) { fputs($pipe,"To: [EMAIL PROTECTED]\n"); fputs($pipe,"From: $email\n"); fputs

[PHP] override nobody@example.com

2002-01-14 Thread toni baker
When using the mail () function to send an email to a linux server the header information shows two from addresses. (1)e-mail address that was defined in $from variable in the header. (2) [EMAIL PROTECTED] Can someone explain this? I only want the $from variable to show up in the header. Can