Activation email issues

Home Forums Legacy Support Support queries Setup issues Activation email issues

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #205914
    cryptoassetrating
    Participant
    Hello, I referred other forum topics and I still couldn't make it work. The issue is the activation emails were not being sent out after I migrated all email templated to buddypress emails when prompted. When I add following code into wplms-customizer.php the emails start working
    add_filter( 'bp_email_use_wp_mail', '__return_true' );
    Although the emails now show from "[email protected]" It should send send from email and website name I set in : LMS -> Settings -> Emails How to fix this?
    #205915
    cryptoassetrating
    Participant
    This reply has been marked as private.
    #205976
    Ava
    Member
    This reply has been marked as private.
    #206093
    cryptoassetrating
    Participant
    This reply has been marked as private.
    #206266
    cryptoassetrating
    Participant
    Hello, we are still waiting for fix on this. Could check our case at the earliest?
    #206268
    maximus
    Member
    Hello, 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';

     }

    #206272
    cryptoassetrating
    Participant
    Hi, I tried the code, it doesn't work It works only when this code is added add_filter( 'bp_email_use_wp_mail', '__return_true' ); Again, it send using [email protected]
    #206423
    maximus
    Member
    Please share valid ftp credentials in private reply .
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Activation email issues’ is closed to new replies.