Hi,

I am trying to send email using mail() with the following header information. However the email goes from [email protected]. How do I get my mail script to send email from my email id instead of [email protected].

$headers = "From: XXXX <[email protected]>"."\n"."MIME-Version:1.0"."\r\n"."Content-type:text/html; charset=iso-8859-1"."\r\n"."X-Priority: 3"."\n"."X-MSMail-Priority: Normal"."\n"."X-Mailer: xxx"."\n"."X-MimeOLE: Produced By xxx";

mail($email, $subject, $read, $headers);

Please help.