I am using the mail function to send emails thru a web form, something like this
$headers .= "FROM: ME";
$headers .= "TO: [email]someone@somewhere.com[/email]";
$sub = "something";
$to = "someone@somewhere.com";
$mes .= "stuff";
$mes .= " more stuff";
mail($to, $sub, $mes, $headers);
The email shows up in the email clients as:
"WORLD WIDE WEB SERVER"
under the FROM CATEGORY
Is there any way I can get this to read as something else like a specific email
or a persons name
any help would be appreciated, thanks