Email configuration Setting

Home Forums Legacy Support Support queries Setup issues Email configuration Setting

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #59384
    ketanvj
    Spectator
    When a student registers to my site, then the activation email to the user is sent from "[email protected]". I want the email to go through [email protected]. for that I have configured the mail id in the setting->general page and also in the LMS setting page but still the issue persists. Please help.
    #59547
    Anshuman Sahu
    Keymaster
    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 please 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 .

    #59591
    ketanvj
    Spectator
    Thanks Alex that works.  
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Email configuration Setting’ is closed to new replies.