Please add this php code in your wplms-customizer.php file of the 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 'admin@site.com';
}
function new_mail_from_nameqw($old) {
return 'site name';
}
This should be a basic setup that doesn't require additional code. Just go to LMS -> Settings -> Emails, and set FROM "Name" and FROM "Email" to appropriate ones. Is this a bug or a normal way to setup?
http://prntscr.com/kl0y62
Anyway, thanks very much for responding and this issue can be closed.
Yes this is the basic setup, but as shown in your screenshots it was clear that you already set the From Name and From Email. That is why i shared this code with you. Thanks for confirmation this issue is resolved so closing this topic.