X

Cómo enviar una notificación por correo electrónico cuando cambia el rol de usuario en WordPress

Snippets by IsItWP

¿Está buscando una manera de enviar notificaciones por correo electrónico a los usuarios de WordPress cuando cambia su rol de usuario? Aunque probablemente exista un plugin para ello, hemos creado un rápido fragmento de código que puedes utilizar para enviar notificaciones por correo electrónico a los miembros cuando su rol de usuario haya cambiado en WordPress.

Instrucciones:

Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:

function user_role_update( $user_id, $new_role ) {
        $site_url = get_bloginfo('wpurl');
        $user_info = get_userdata( $user_id );
        $to = $user_info->user_email; 
        $subject = "Role changed: ".$site_url."";
        $message = "Hello " .$user_info->display_name . " your role has changed on ".$site_url.", congratulations you are now an " . $new_role;
        wp_mail($to, $subject, $message);
}
add_action( 'set_user_role', 'user_role_update', 10, 2);

Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.

Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 62 mejores temas gratuitos para blogs de WordPress y 7 mejores plugins para formularios de contacto de WordPress.

Comentarios   Deja una respuesta

  1. how do I use HTML tags here?
    I want to make texte bold
    $message = “Hello ” .$user_info->display_name . ” your role has changed on “.$site_url.”, congratulations you are now an ” . $new_role;

    1. You could try using this code for that line:

      $message = “Hello ” .$user_info->display_name . ” your role has changed on “.$site_url.”, congratulations you are now an ” . $new_role . ““;

  2. Perfect 👍
    Thank you so much 👏

  3. You article has help me but it also sends email to new registrations. I want to use your code for two roles that I want custom messages for. Would this code work for that?

    1. The code would need to be modified to check the value of $new_role.

  4. I used this code but no mail received when I change my role

  5. this one works and does not send email if new register

    function user_role_update( $user_id, $new_role ) {

    if ($new_role == “customer”) {}

    elseif ($new_role == “role1″||”role2”) {

    $site_url = get_bloginfo(‘wpurl’);
    $user_info = get_userdata( $user_id );
    $to = $user_info->user_email;
    $subject = “A sua conta foi validada. Pode agora começar a comprar em 1223.com”;
    $message = “welcome ” .$user_info->display_name . “! message .” ;
    wp_mail($to, $subject, $message);
    }}

    add_action( ‘set_user_role’, ‘user_role_update’, 10, 2);

  6. This was super helpful! Thank you!

  7. Mariusz Szatkowski octubre 31, 2013 en 6:59 am

    Hi,

    1. Thanks for the snippet – but I want to notify user only when the role of existing user is changed.

    Now the script sends an email when new user is added to WP.

    2. It would be more accurate to send the role name (now it sends the slug)

    Any ideas?

    Thanks

    1. Hi did you received the snippet? if possible could you share me the link too? cause im facing the same error of not sending a separate email

  8. Mariusz Szatkowski septiembre 18, 2013 en 1:56 am

    Hi, thanks for that snippet. What about sending notification when the role is changed to certain name?

    Eg. I want to send the notification when the user role is changed to ‘group-x’…

    Thanks and kind regards
    M

  9. Tiago Dufau de Vargas septiembre 6, 2013 en 3:43 pm

    Saved me a day of research!! Thanks a lot.

  10. Any idea how to solve this if you want the email to be sent only when you change their role, not when you set the role? With this snippet, an email will be sent when you add a new user. An email will also be sent when you update e.g a users firstname (not touching the role).

    1. Tiago Dufau de Vargas septiembre 6, 2013 en 3:46 pm

      You could try to use get_userdata and verify if the current user role is different than the new one…

  11. Brilliant! Thanks!

    1. Thanks Raam, glad to hear you like it.

Añadir un comentario

Nos alegra que haya decidido dejar un comentario. Tenga en cuenta que todos los comentarios se moderan de acuerdo con nuestra política de privacidad , y que todos los enlaces son nofollow. NO utilice palabras clave en el campo del nombre. Tengamos una conversación personal y significativa.

WordPress Launch Checklist

La lista definitiva para lanzar WordPress

Hemos recopilado todos los elementos esenciales de la lista de comprobación para el lanzamiento de su próximo sitio web de WordPress en un práctico ebook.
Sí, envíeme el ¡gratuito!