Page 1 of 1

Email Notification on submitted form

Posted: Fri Apr 25, 2025 5:20 pm
by bjlolmaugh
How do I configure the email to reflect my Name in the from column instead of the email address?
(see example)
I would like it to appear as shown on Line 2.

Image

Re: Email Notification on submitted form

Posted: Fri Apr 25, 2025 7:43 pm
by Pablo
You can set the 'from name' in the properties of the form.

Re: Email Notification on submitted form

Posted: Fri Apr 25, 2025 9:21 pm
by bjlolmaugh
Pablo wrote: Fri Apr 25, 2025 7:43 pm You can set the 'from name' in the properties of the form.
Where is the From field located?

Re: Email Notification on submitted form

Posted: Fri Apr 25, 2025 9:35 pm
by BaconFries
Pablo wrote..
bjlolmaugh wrote: Fri Apr 25, 2025 9:21 pm
Pablo wrote: Fri Apr 25, 2025 7:43 pm You can set the 'from name' in the properties of the form.
Where is the From field located?
Image

Re: Email Notification on submitted form

Posted: Fri Apr 25, 2025 9:37 pm
by bjlolmaugh
I don't understand.
That is the FORM field, not the FROM field.

Re: Email Notification on submitted form

Posted: Sat Apr 26, 2025 5:21 am
by AliGW
Did you try clicking the Advanced button? The From Name field is on the Auto Responder tab.

Hope this helps.

Re: Email Notification on submitted form

Posted: Sat Apr 26, 2025 1:20 pm
by bjlolmaugh
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 tried that. That from field does not affect the admin's email of incoming mail.

Re: Email Notification on submitted form

Posted: Sun Apr 27, 2025 1:43 am
by bjlolmaugh
So ... I'm assuming by no help in this matter that there is no resolution to it?

Re: Email Notification on submitted form

Posted: Sun Apr 27, 2025 6:20 am
by Pablo
Please click the 'More' button to set the 'from' name.

Re: Email Notification on submitted form

Posted: Sun Apr 27, 2025 1:27 pm
by bjlolmaugh
Pablo wrote: Sun Apr 27, 2025 6:20 am Please click the 'More' button to set the 'from' name.
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.


THIS IS THE EDIT BOX FIELD

Image


THIS IS THE FORM PROPERTIES "MORE" SECTION"

Image


THIS IS THE RESULTING EMAIL.
IT STILLSHOWS AN EMAIL ADDRESS INSTEAD OF A NAME.


Image

Re: Email Notification on submitted form

Posted: Sun Apr 27, 2025 2:34 pm
by Pablo
$name is not valid, unless you have set the $name variable somewhere in the page yourself.

It either needs to be a fixed value, like

Code: Select all

Your Name
Or a variable like

Code: Select all

$_POST['name']
where 'name' is the name of the input field.

Re: Email Notification on submitted form

Posted: Sun Apr 27, 2025 2:40 pm
by bjlolmaugh
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, like

Code: Select all

Your Name
Or a variable like

Code: Select all

$_POST['name']
where 'name' is the name of the input field.
Thank you. That did the trick.