Have you enabled the wplms hmtl emails from wp-admin -> lms -> settings -> emails-> email options..
refer :
http://prntscr.com/bvjwb5
If not then please try enabling it and then again check the issue .
If above does not helps then p
lease try adding the given code in your wplms-customizer.php file in wplms customizer plugin :
add_filter('wp_mail_from', 'new_mail_fromqw');
add_filter('wp_mail_from_name', 'new_mail_from_nameqw');
function new_mail_fromqw($old) {
return '[email protected]';
}
function new_mail_from_nameqw($old) {
return 'site name';
}
change "[email protected] " and " site name " as you want to .