contact form with PHPmailer script html error

Luis_vxd
4 Posts
Luis_vxd posted this 21 April 2022
Ask a Question

Hi
I have created a contact form and use a PHPMailer script using SMTP.
After pressing "Submit" button the script works well and sends email as expected however the page returns an error from HTML: "Unable to send your message. Please fix errors then try again."
How do I integrate the script with HTML code?
Thanks for the help
Luis

Hi I have created a contact form and use a PHPMailer script using SMTP. After pressing "Submit" button the script works well and sends email as expected however the page returns an error from HTML: "Unable to send your message. Please fix errors then try again." How do I integrate the script with HTML code? Thanks for the help Luis

Last edited 21 April 2022 by Luis_vxd

Vote to pay developers attention to this features or issue.
5 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 21 April 2022

Hi,

Please check the following article:
https://nicepage.com/doc/25066/create-a-simple-html-contact-form
It includes two examples of how to show the message about successful email sending after form submission.

Please let us know if you have any further questions.

...................................................
Sincerely,
Olivia
Nicepage Support Team

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

Hi, Please check the following article: https://nicepage.com/doc/25066/create-a-simple-html-contact-form It includes two examples of how to show the message about successful email sending after form submission. Please let us know if you have any further questions. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Luis_vxd
4 Posts
Luis_vxd posted this 21 April 2022

Thank you for your prompt reply.
Please note:
1. There is no 'Send to' option on Form settings (I am a mac user). The HTML automated generated code point to 'form-9349.php'.
2. Still get the same HTML error message despite the email being sent. this is PHP code:

$sent = $mail->Send();
if ($sent) {
$resArray= array('success' => true);
header('Content-Type: application/json');
echo json_encode($resArray);
} else {
$resArray= array('success' => false);
header('Content-Type: application/json');
echo json_encode($resArray);
}

Thanks

Thank you for your prompt reply. Please note: 1. There is no 'Send to' option on Form settings (I am a mac user). The HTML automated generated code point to 'form-9349.php'. 2. Still get the same HTML error message despite the email being sent. this is PHP code: $sent = $mail->Send(); if ($sent) { $resArray= array('success' => true); header('Content-Type: application/json'); echo json_encode($resArray); } else { $resArray= array('success' => false); header('Content-Type: application/json'); echo json_encode($resArray); } Thanks
Luis_vxd
4 Posts
Luis_vxd posted this 22 April 2022

Update on my previous message.
There is an JSON error which I do not understand as I am not expert. See attached screenshot.

Can you please help?
Thank you

Update on my previous message. There is an JSON error which I do not understand as I am not expert. See attached screenshot. Can you please help? Thank you
Luis_vxd
4 Posts
Luis_vxd posted this 23 April 2022

Hi
I managed to sorted it out.

Thanks

Hi I managed to sorted it out. Thanks
Support Team
Support Team posted this 25 April 2022

Hi,

Sorry for the delay.
We're glad you managed to figure it out.
Please let us know if you have any further questions.

...................................................
Sincerely,
Olivia
Nicepage Support Team

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

Hi, Sorry for the delay. We're glad you managed to figure it out. Please let us know if you have any further questions. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments