X

Enviar notificação por e-mail quando o perfil for atualizado

Snippets by IsItWP

Está procurando uma maneira de enviar uma notificação por e-mail aos usuários do WordPress quando o perfil deles for atualizado? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para enviar uma notificação por e-mail quando o perfil for atualizado no WordPress.

Instruções:

Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:

function user_profile_update( $user_id ) {
	$site_url = get_bloginfo('wpurl');
        $user_info = get_userdata( $user_id );
        $to = $user_info->user_email; 
        $subject = "Profile Updated: ".$site_url."";
        $message = "Hello " .$user_info->display_name . "nYour profile has been updated!nnThank you for visitingn ".$site_url."";
        wp_mail( $to, $subject, $message);
}
add_action( 'profile_update', 'user_profile_update', 10, 2);

Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar seu site acidentalmente.

Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 10 melhores plug-ins de testemunho do WordPress para adicionar prova social e 18 alternativas do Jetpack para obter os recursos sem inchaço.

Comentários   Deixe uma resposta

  1. Can you set it up so it ONLY emails when and admin changes the user profile? In fluent SMTP it is showing that its sending double emails. One when they create the account (I am assuming) and one when I change something on their profile (i am just allocating items to their account by assigning them a specific brand)

  2. Hello,

    Is there a way to have the email highlight what part of their profile was updated?

    Thank you!

    1. Sadly we don’t currently have a snippet for this.

      You may want to check out the profile_update hook: https://developer.wordpress.org/reference/hooks/profile_update/

      You may be able to add arguments for the $old_user_data and $userdata objects to the user_profile_update function and compare the two objects.

  3. Hi there!

    I operate a directory based website where members register using ultimate member and then I create listings on a map with a seperate plugin.

    Problem is is when a user updates their profile, I have no way of knowing and I’m not able to manually update the map listing when their profile has been changed.

    Is there a way that I, as administrator, can receive an email every time EVERY user makes a change to their profile?

    Thank you!

    1. You could use this snippet and change the $to variable to your email address.

  4. BRAVO MERCI ! Mais ça m’envoie deux fois le mail…

    function user_profile_update( $user_id ) {
    $site_url = get_bloginfo(‘wpurl’);
    $user_info = get_userdata( $user_id );
    $to =”[email protected]”;
    $subject = “Mise a jour profil: ” .$user_info->display_name . “”;
    $message = “Le profil: ” .$user_info->display_name . ” a ete mis a jour \n\nRentre tout ca dans ACCESS au lieu de me regarder betement\n “;
    wp_mail( $to, $subject, $message);
    }
    add_action( ‘profile_update’, ‘user_profile_update’, 10, 2);

    J’ai pas trouvé de solution … Encore Merci !

    1. You may want to check that the “profile_update” hook is not being run twice.

  5. Can we send email when specific field is updated ?

  6. Hello please i am new to wordpress,i want to set up multiple users which i have been able to do but also i want users to be notified via mail when new posts are added or updates are added.I read up your wordpress snippet on adding the codes u have above to function.php i cant find this function.php anywhere on my C drive.Please help out thanks

  7. its workin perfectly. but mail is showing to spam folder

    🙁

    1. Not much can be down about that, I would think it has to do with spam settings.

    2. Chrys Mahoungou agosto 27, 2019 em 8:41 am

      I think if is showing as spam you can just mark as not a spam.correct me of i didn’t get properly your question

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!