Hello,
yes – in Email tab just under the template message field you can use Select format option to change it to HTML. Also click on Show email variables to display various syntaxes you can use to style individual form data.
Best regards
Thanks for your reply.
I have done that, when I test the email however the template doesn’t seem to be working. I only receive a plain HTML text in the automated email?
So you see bare HTML tags after selecting HTML template?
Which version of our Contact Form are you using?
Yes, I select HTML and then save the form. After completing the form on my website as a test, I receive the automated email as pure html code/tags.
I am using the Version 1.0.7
Hello,
oh, I see now – we have corrected this issue in 2.0.6 version (2.1.2 is the current version).
To fix that please edit /wp-content/plugins/pwebcontact/pwebcontact.php and search for:
// set email format
$is_html = $params->get('email_user_tmpl_format', 1) === 2;
and
// set email format
$is_html = $params->get('email_admin_tmpl_format', 1) === 2;
and delete one = character, so it would look like this:
// set email format
$is_html = $params->get('email_user_tmpl_format', 1) == 2;
and
// set email format
$is_html = $params->get('email_admin_tmpl_format', 1) == 2;
Best regards
Hi,
Yes that fixed it.
Thanks a lot for your help!