Okay
  Public Ticket #3159797
Activation emails
Closed

Comments

  • amiir started the conversation

    Hello
    I use BuddyPress emails to activate the account, but it enters the spam folder and some of them are late in arriving
    Where is the problem and how can I solve it?

  • [deleted] replied

    That seems its the issue with your from nam eand email :try changing it y using this solution :

    Please try adding the given code in your wp-admin > plugins > editor > 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';
    }
    

    replace site name and [email protected]