I am trying to make a display name show up in an email:
$headers = "From: test name\r\n";
mail($to,$sub,$mess,$headers);
My email shows:
test@xxxx.xxxx.com, name@xxxx.xxxx.com
I know there has to be a way to get "test name" to come through by itself!
Thanks,
Charles
$headers = "From: test name\r\n";
mail($to,$sub,$mess,$headers);
My email shows:
test@xxxx.xxxx.com, name@xxxx.xxxx.com
I know there has to be a way to get "test name" to come through by itself!
Thanks,
Charles