Created
July 23, 2018 05:28
-
-
Save KaineLabs/b3a3d646bc4c77cced5f28d8fba3d934 to your computer and use it in GitHub Desktop.
Send Buddypress Welcome Message !
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//send a welcome email when a user account is activated | |
add_action( 'bp_core_activated_user', 'yz_welcome_user_notification', 10, 3 ); | |
function yz_welcome_user_notification( $user_id, $key = false, $user = false ) { | |
if ( is_multisite() ) { | |
return ;// we don't need it for multisite | |
} | |
//send the welcome mail to user | |
//welcome message | |
$welcome_email = __( 'Dear USER_DISPLAY_NAME, | |
Your new account is set up. | |
You can log in with the following information: | |
Username: USERNAME | |
LOGINLINK | |
Thanks! | |
--The Team @ SITE_NAME' ); | |
//get user details | |
$user = get_userdata( $user_id ); | |
//get site name | |
$site_name = get_bloginfo( 'name' ); | |
//update the details in the welcome email | |
$welcome_email = str_replace( 'USER_DISPLAY_NAME', $user->first_name, $welcome_email ); | |
$welcome_email = str_replace( 'SITE_NAME', $site_name, $welcome_email ); | |
$welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email ); | |
$welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email ); | |
//from email | |
$admin_email = get_site_option( 'admin_email' ); | |
if ( empty( $admin_email ) ) { | |
$admin_email = 'support@' . $_SERVER['SERVER_NAME']; | |
} | |
$from_name = $site_name . "<$admin_email>" ;//from | |
$message_headers = array( | |
'from' => $from_name, | |
'content-type' => 'text/plain; charset='. get_option('blog_charset') | |
); | |
//EMAIL SUBJECT | |
$subject = sprintf( __( 'Welcome to %1$s ' ), $site_name ) ; | |
//SEND THE EMAIL | |
wp_mail( $user->user_email, $subject, $welcome_email, $message_headers ); | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment