Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Gator Forms Support

    (@perfect-web-support)

    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

    Thread Starter bastiir

    (@bastiir)

    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?

    Plugin Author Gator Forms Support

    (@perfect-web-support)

    So you see bare HTML tags after selecting HTML template?

    Which version of our Contact Form are you using?

    Thread Starter bastiir

    (@bastiir)

    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

    Plugin Author Gator Forms Support

    (@perfect-web-support)

    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

    Thread Starter bastiir

    (@bastiir)

    Hi,

    Yes that fixed it.
    Thanks a lot for your help!

    Plugin Author Gator Forms Support

    (@perfect-web-support)

    I am glad I could help!

    Best regards

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘HTML Email message to User’ is closed to new replies.