get current user email wordpress
global $current_user;
get_currentuserinfo();
echo $current_user->user_email;
get current user email wordpress
global $current_user;
get_currentuserinfo();
echo $current_user->user_email;
wordpress change email new user template
//Use the plugin: Welcome Email Editor
// OR:
// CHANGE DEFAULT TEXT MAIL FOR NEW USERS (sent to admin)
add_filter( 'wp_new_user_notification_email_admin', 'custom_wp_new_user_notification_email', 10, 3 );
function custom_wp_new_user_notification_email( $wp_new_user_notification_email, $user, $blogname ) {
$wp_new_user_notification_email['message'] = sprintf( "%s has been registered!.", $user->user_email );
return $wp_new_user_notification_email;
}
// CHANGE DEFAULT TEXT MAIL FOR NEW USERS (sent to user)
add_filter( 'wp_new_user_notification_email', 'custom_wp_new_user_notification_email_user', 10, 3 );
function custom_wp_new_user_notification_email_user( $wp_new_user_notification_email, $user, $blogname ) {
$wp_new_user_notification_email['message'] = sprintf( "%s ha sido registrado en ASTAC!.", $user->user_email );
return $wp_new_user_notification_email;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us