the automated email to send after registering and forget password , in that i have changed the "from address and from name " in LMS-settings -email and email options
but still iam receiving mail from [email protected], instead of mail id i entered
what else should i change
p.s im not using any mandrill or mailchimp
Please try adding the given code in your wplms-customizer.php file at the end before "?>" 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';}