Email Notification on submitted form

Issues related to forms.
Post Reply
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Email Notification on submitted form

Post 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
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
User avatar
Pablo
 
Posts: 23436
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Email Notification on submitted form

Post by Pablo »

You can set the 'from name' in the properties of the form.
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post 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?
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
User avatar
BaconFries
 
 
Posts: 5932
Joined: Thu Aug 16, 2007 7:32 pm

Re: Email Notification on submitted form

Post 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
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post by bjlolmaugh »

I don't understand.
That is the FORM field, not the FROM field.
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
User avatar
AliGW
 
 
Posts: 220
Joined: Thu Dec 19, 2024 3:41 pm

Re: Email Notification on submitted form

Post by AliGW »

Did you try clicking the Advanced button? The From Name field is on the Auto Responder tab.

Hope this helps.
Ali
Retired, but still loving to learn & very busy.
https://alisongwright.me.uk
Novice with WWB, but was an avid user of Serif WebPlus before.
Fairly expert at Microsoft Excel (but not VBA).
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post 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.
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post by bjlolmaugh »

So ... I'm assuming by no help in this matter that there is no resolution to it?
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
User avatar
Pablo
 
Posts: 23436
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Email Notification on submitted form

Post by Pablo »

Please click the 'More' button to set the 'from' name.
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post 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
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
User avatar
Pablo
 
Posts: 23436
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Email Notification on submitted form

Post 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.
bjlolmaugh
 
 
Posts: 166
Joined: Thu Nov 15, 2007 2:36 pm
Contact:

Re: Email Notification on submitted form

Post 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.
Sincerely,

Barbara Lolmaugh
http://www.websitesbybarbara.com
Post Reply