Skip to:
Content
Pages
Categories
Search
Top
Bottom

Welcome Message for Users comes from Hosting'

  • @dasfx3

    Participant

    Hi,

    I have a site using buddypress and when users register from the site they get the welcome message that can be edited through wordpress. However, the welcome email comes from my hosting package at bluehost. What I’m wondering is how to change this so that the welcome message is more personalized to my site.

    wordpress version: 4.0
    buddypress version: 2.1

    http://www.filmmakersallianceburlington.com

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • @shanebp

    Moderator

    Put these functions in your theme/functions.php file
    and adjust the return values as necessary…

    function dasfx3_new_mail_from_name($old) {
    	return 'FilmMakers';
    }
    add_filter('wp_mail_from_name', 'dasfx3_new_mail_from_name');
    
    function dasfx3_new_mail_from($old) {
    	return 'support@filmmakersallianceburlington.com';
    }
    add_filter('wp_mail_from', 'dasfx3_new_mail_from');

    @dasfx3

    Participant

    That worked like a charm Shane!

    Very much appreciated!

    @dasfx3

    Participant

    BTW

    I’m new to wordpress – how were you able to find my user name? Should I be concerned about this as a security risk?

    @shanebp

    Moderator

    >how were you able to find my user name?

    Look at all your entries on this thread – below your ‘avatar’ and above Participant.

    Re security – you mean using it in a function name? No.

    @andreaglover

    Participant

    exactly how do you change the return code? i dont understand what to change

    what do i change the dasfx3 and FilmMakers to?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Welcome Message for Users comes from Hosting'’ is closed to new replies.
Skip to toolbar