Nicepage form using from field

info379
2 Posts
info379 posted this 19 November 2021
Ask a Question

Hello,

I am using Nicepage php form (in build) and have a problem with the form field in submit settings.
What do I put in these field?
The form send me a email that's correct but there is no email adres from the sender in the email.

Hello, I am using Nicepage php form (in build) and have a problem with the form field in submit settings. What do I put in these field? The form send me a email that's correct but there is no email adres from the sender in the email.
Vote to pay developers attention to this features or issue.
3 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 19 November 2021

Hello Theo,

Please note that sending the e-mail is a server-side task and we cannot configure that. Please check our recommendations about the server settings here:
https://nicepage.com/doc/62334/send-emails-with-php-script
The Form should be tested with a published page so the server would execute the script.
The email address Where to send mentioned in the Contact form desktop application settings should be the same (or redirect) as the one your domain is hosted on. This mailbox will receive your form submissions.
From - info/mail/form@customdomain.com -- the email address of the sender of your form submission.

If you need some extra help, please send here the screenshot of your desktop settings for Submit so we could check and the link to your page.

...................................................
Sincerely,
Anna T
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hello Theo, Please note that sending the e-mail is a server-side task and we cannot configure that. Please check our recommendations about the server settings here: https://nicepage.com/doc/62334/send-emails-with-php-script The Form should be tested with a published page so the server would execute the script. The email address **Where to** send mentioned in the Contact form desktop application settings should be the same (or redirect) as the one your domain is hosted on. This mailbox will receive your form submissions. **From** - info/mail/form@customdomain.com -- the email address of the sender of your form submission. If you need some extra help, please send here the screenshot of your desktop settings for Submit so we could check and the link to your page. ................................................... Sincerely, Anna T Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
info44392
61 Posts
info44392 posted this 23 November 2021

For me this solution for last Nicepage worked well - not have tested it yet for the new version.

It was posted in previous forum thread by Simon with small correction of mine:

" You do need to add an email field to the contact form, once created and exported to HTML, to reply direct from your email client, you will need to edit the scripts/form-****.php file and where it says:

$form = array(
'subject' => 'New Enquiry',
'email_message' => 'You have a new form submission',
'success_redirect' => '',
'email' => array(
    'from' => ' ',

replace 'from' => ' ', with the following:

        'from' => $_POST["email"],

Kind regards
For me this solution for last Nicepage worked well - not have tested it yet for the new version. It was posted in previous forum thread by Simon with small correction of mine: " You do need to add an email field to the contact form, once created and exported to HTML, to reply direct from your email client, you will need to edit the scripts/form-****.php file and where it says: $form = array( 'subject' => 'New Enquiry', 'email_message' => 'You have a new form submission', 'success_redirect' => '', 'email' => array( 'from' => ' ', replace 'from' => ' ', with the following: 'from' => $_POST["email"], Kind regards
info379
2 Posts
info379 posted this 24 November 2021

Yesss It worked!!!

Thanks a lot!

Kind regards
Theo.

Yesss It worked!!! Thanks a lot! Kind regards Theo.
You must log in or register to leave comments