wordpress email

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #237135
    rangu
    Participant
    Instead of getting the emails from set name and email I am getting the email from wordpress and wordpress.org. How to rectify that
    #237166
    logan
    Member

    Hello,

    Please paste this snippets in your wp-admin >> plugins >> editor >> wplms-customizer plugin >> wplms-customizer.php 

    Or in

    Please add this code in your wplms-customizer.php file in wplms customizer plugin by using your FTP/SFTP/cpanel:

    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';

    }

    add_filter( 'bp_email_use_wp_mail', '__return_true ' );

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘wordpress email’ is closed to new replies.