(see example)
I would like it to appear as shown on Line 2.

Where is the From field located?
Yes, I tried that. That from field does not affect the admin's email of incoming mail.AliGW wrote: Sat Apr 26, 2025 5:21 am Did you try clicking the Advanced button? The From Name field is on the Auto Responder tab.
Hope this helps.
Yes, I have. The field is already set to $name, which matches the field of the applicant. That has no affect on how the form arrives to me. It still shows the email came from an email address instead of a name.
Code: Select all
Your Name
Code: Select all
$_POST['name']
Thank you. That did the trick.Pablo wrote: Sun Apr 27, 2025 2:34 pm $name is not valid, unless you have set the $name variable somewhere in the page yourself.
It either needs to be a fixed value, likeOr a variable likeCode: Select all
Your Name
where 'name' is the name of the input field.Code: Select all
$_POST['name']