• Hio,

    sadly Custom User EMails not working anymore,

    You can modify the email, but still sending the old/standard message.

    The reason is a change in the function wp_new_user_notification

    See discussion here:

    wp_new_user_notification discussion

    How to solve.

    Open

    /var/www/html/wp-content/plugins/custom-user-emails/useremails.php

    with your favorite editor.

    Replace

    
    function wp_new_user_notification( $user_id, $notify = '' ) {
    

    with

    
     function wp_new_user_notification ( $User_ID,  $deprecated = null, $notify = '' ) {
    

    And sending mails works again.

    Tag [plaintext_password] also not working anymore,
    because since WordPress don’t support reading password from database anymore.
    Only setting a new password is possible.

  • The topic ‘How to solve broken Custom User Email’ is closed to new replies.