• Resolved xszejdi

    (@xszejdi)


    Hello guys!

    I noticed when user sends an offline message, confirmation email shows following error for him before e-mail content:

    https://i.imgur.com/pxTBJkn.png

    Is there way to hide it? it doesnt affect functionality but aesthetics. I see this only from your wonderful plugin.

    Mateusz.

    • This topic was modified 4 years, 10 months ago by xszejdi.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author wordpress3cx

    (@wordpress3cx)

    Hello @xszejdi,
    email template is in functions.php at line 996. Can you please try to strip the header

    <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"https://www.w3.org/TR/html4/loose.dtd\">

    and leave only the html tag, like this?

    $body = '<html>
    <body>
    ...

    There could be some issue with your WordPress mailer.
    Let us know!

    Thread Starter xszejdi

    (@xszejdi)

    Hey @wordpress3cx!

    Great! it’s working. What can i do to not lose this after update?

    Thank You.

    Plugin Author wordpress3cx

    (@wordpress3cx)

    Hello @xszejdi, thanks for your feedback!
    We’ll include a fix with the proper header in the next release, so you don’t have to worry about losing this update.

    The header has to be unescaped, like this:

        $body = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
    <html>
      <body>

    This is already fixed in 8.1.7, we’ll release soon with some other improvements.

    Thread Starter xszejdi

    (@xszejdi)

    Awesome! I’m waiting for the best plugin to be updated.

    Thank You.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Offline message e-mail error’ is closed to new replies.