Hi @biels,
Thanks for contacting us,
I hope you are doing well, We have forwarded this to our technical team we will get back to you.
Thanks & Regards
WP Experts Support Team
Hi @biels,
Yes, it’s possible and also there are more functionalities in the new user-approved premium one, but you can use this code in your theme functions.php. A welcome email will send as HTML.
Please check it and let me know if any issue occurs
add_filter('new_user_approve_welcome_user_message', 'add_html_content_type', 10, 2);
function add_html_content_type ($message, $user_email) {
add_filter( 'wp_mail_content_type', 'welcome_html_content_type');
return $message;
}
function welcome_html_content_type () {
$content_type = 'text/html';
return $content_type;
}
Thank you
Hi @biels,
We are resolving this thread due to a lack of activity if you have any questions please open a new thread.
Thank you