Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi @hornero
    Looks like email body content is in database ( wp_options, key ‘cl_emailnotificationcontent’ ), but html tags are escaped.

    So, the solution (to send html/text formatted emails) will be:
    clean-login.php (line 513), just after:
    $emailnotificationcontent = str_replace(“{email}”, $email, $emailnotificationcontent);
    add this line:

    // fix
    $emailnotificationcontent = html_entity_decode($emailnotificationcontent, ENT_COMPAT, 'UTF-8');
    • This reply was modified 7 years, 5 months ago by mickcss.
    • This reply was modified 7 years, 5 months ago by mickcss.
Viewing 1 replies (of 1 total)