Ticket for: User Verification
0
Vee
hi, I use the user verification plugin.
My site is still developing and i found some issues.
The email template that send to users, {site_name} and {site_description} that used in the template can't be read.
I assume all of site parameters will have the same issue.
My site name and description are in Thai language.
Hope you can fix this soon
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum.
I understand the issue, you should set email charset to UTF-8 or something else that supports by your language. please add following code to your them functions.php file and see whats happening. you can also try by other charset
add_filter( 'wp_mail_charset', 'change_mail_charset' ); function change_mail_charset( $charset ) { return 'UTF-8'; }
https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_charset
Regards