Skip to:
Content
Pages
Categories
Search
Top
Bottom

Remove noreply email from notification emails


  • avaiya
    Participant

    @avaiya

    Wordpress Version:4.9.2
    bbPress Version: 2.5.14
    Site: http://www.avaiya.com

    I have a couple of questions related to the default emails that get sent when people post to forums, follow topics, etc.

    1. These emails show up as being sent from our admin email address, with the name Avaiya Media. I’d like to edit the name and the email address sending the emails. Do you know how I can do that?

    2. These emails send a notification to the person who subscribed to that forum post, but they also
    automatically send an email to noreply@avaiya.com. This is bouncing. How can I remove this email address when these emails are sent?

    Thanks!

Viewing 4 replies - 26 through 29 (of 29 total)

  • jemar707
    Participant

    @jemar707

    I am reading and reading and reading. If I remove the functions I use from above and guess they may be a problem, is this something that can be handled by your style pack plugin instead? (I use it for ALOT). Much of those functions in our plugin relate to bbpress, that’s one of the reasons I use it instead of a child theme sometimes. If I change themes, I don’t want to lose the way I want bbPress to operate.


    Robin W
    Moderator

    @robin-w

    paths removed, I’ll take a look tomorrow


    Robin W
    Moderator

    @robin-w

    I think in your code the function no_reply_email needs a my_bbp in front of it

    so

    function no_reply_email(){
        $email = 'no-reply@sitename.com'; // any email you want
        return $email;
    }
    add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');

    shoudl read this

    function my_bbp_no_reply_email(){
        $email = 'no-reply@sitename.com'; // any email you want
        return $email;
    }
    add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');

    jemar707
    Participant

    @jemar707

    Thank you so much. I made the change and hope that’s the fix.

Viewing 4 replies - 26 through 29 (of 29 total)
  • You must be logged in to reply to this topic.
Skip to toolbar