• Resolved Jason Lewis

    (@jasonblewis)


    New user confirmed email has a strange character in it

    they all get a “” in them. eg:

    “anita has successfully joined to <site name>”

    and it should probably be worded:

    “Your email address has successfully been verified at <site name>”,

    the wording “joined to” is grammatically correct.

Viewing 1 replies (of 1 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    Thanks for your post,

    you can try following code to fix the character issue on mail.

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

    You can customize the template as you need, under

    User Verification > Email Templates

    View post on imgur.com

    Regards

Viewing 1 replies (of 1 total)

The topic ‘new user confirmed email’ is closed to new replies.