PHP Mail Headers Problem

Werojeory

New Member
I'm creating a simple PHP mail function. I have a small problem with its header. I'm trying to set the senders name to be the clients website, and when I use the following code:\[code\]$headers = "From: Websites' Name";$headers .= "\nMIME-Version: 1.0\n"."Content-Type: multipart/mixed;\n"." boundary=\"{$mime_boundary}\"";$headers .= "Reply-To: $email <$email>\n";$headers .= "X-Sender: $email <$email>\n";$headers .= "X-Priority: 1\n";\[/code\]I receive the E-mail and the sender would be "Websites' [email protected]". What I want is, to get rid of the "@h184905.safesecureweb.com" I only want the "Websites' Name" to appear ... Can anyone help me with that ???Thanks
 
Back
Top