The client has asked me if i could change how he was receiving the inquires so that his email program would show the email of the person inquiring instead of showing his server information.
Example of what its currently doing:
I thought that by adding this simple line of php it would sort it out:
$mailHeader = "From: $urmail\
";
urmail is the field for the email.
This however did not work, instead i receive no message at all when i tried testing the form.
Ive also tried added \r
which also didn’t seem to work
You need to fetch the urmail field from the form so you can use it in your code, like felgall pointed out.
The code you linked to does not do that until later in the code. It needs to happen before you use it.
Yea, I looked over your code. There isn’t anything essentially wrong with it, but there seems to be something missing from it. Did you only post a part of it?
I posted all of the php information and php effecting the html…
Read my first post to see what the form does.
when i add your code in it nothing happens.