• Resolved -EO

    (@eo-2)


    Hello, thanks for this plugin.

    The emails sent do not show special characters (áéíóú ? …).

    I created a completely personalized mail that includes:

    <meta http-equiv = “Content-Type” content = “text / html; charset = utf-8” />

    But, although the design is displayed correctly, the text encoding does not work.

    How can I correct this?

    Thanks greetings.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    Can you please use mail charset ‘UTF-32’

    https://codex.www.ads-software.com/Plugin_API/Filter_Reference/wp_mail_charset

    you can use the following code to your theme function.php file

    
    add_filter( 'wp_mail_charset', 'change_mail_charset' );
    function change_mail_charset( $charset ) {
    	return 'UTF-32';
    }

    Let me know the result.
    Regards

    Thread Starter -EO

    (@eo-2)

    Hello

    As a solution I was using "á = &aacute;", "é = &eacute;"... and works, except for the fields “Email from name:” and “Email Subject:“.

    After entering the PHP function UTF-32 … it got worse. Apple Mail “swallows everything”, there was no problem. But with mail applications on PC and Android the mail was not shown, and the fields mentioned above showed question marks.

    So I tried with UTF-8 and … “Voila!”. Now everything is fine.

    Thank you very much for your support. Great job.

    A greeting.

    • This reply was modified 6 years, 1 month ago by -EO.
    Plugin Author PickPlugins

    (@pickplugins)

    Thanks for your reply,

    if you love our support, please submit us five-star reviews
    https://www.ads-software.com/plugins/user-verification/#reviews

    Regards

    Thread Starter -EO

    (@eo-2)

    Hello, only comment that the template “New User Confirmed” don’t work with the aforementioned patches.

    Please consider resolving this to an upcoming version.

    PS: the string “<strong>{$username}</strong> username is not allowed!” is not included in the translation.

    Thanks, a greeting.

    • This reply was modified 6 years, 1 month ago by -EO.
    • This reply was modified 6 years, 1 month ago by -EO.
    • This reply was modified 6 years, 1 month ago by -EO.

    I have the same issue with the special characters. The e-mail content gets so messy with such characters.

    Can you please be more precise on why is this happening and how to solve it?

    Plugin Author PickPlugins

    (@pickplugins)

    Hi @mikeyhash, you could try this, its charset issue on your site, i hope this will solve.
    https://www.ads-software.com/support/topic/the-emails-sent-do-not-show-special-characters-aeiou-n/#post-10800335

    Regards

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘The emails sent do not show special characters (áéíóú ? …)’ is closed to new replies.