Hi there,
1) [IMP.] Please try using the Postman SMTP for emailing. Refer : https://wplms.io/support/knowledge-base/postman-smtp-for-emails/
2) else Try adding this code in wp-admin > Plugins > Editor > select WPLMS Customizer Plugin > wplms-customizer.php
add_filter('wp_mail_content_type', 'text/plain', function () {return ‘text/html’; },999);
3)else try this one
for email please try adding this code in your wplms-customizer.php file in wplms customizer plugin : :
|
add_filter( 'wp_mail_content_type', 'set_content_type' ,9999999);
function set_content_type( $content_type ) {
return 'text/plain';
}
|
and if above does not works remove it and try this one :
add_filter( 'bp_email_use_wp_mail', '__return_true ' );
for notification wplms has its own system .but it does not sends the whole results right now.
Hope this works.