Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AngeliMae/6291b3b98bfc31b13656212eb10d30d9 to your computer and use it in GitHub Desktop.

Select an option

Save AngeliMae/6291b3b98bfc31b13656212eb10d30d9 to your computer and use it in GitHub Desktop.
Receive email notification when user updates their form
<?php
add_action( 'um_after_user_updated',function( $user_id, $args, $to_update ){
ob_start();
?>
<table>
<tbody>
<?php foreach( $to_update as $metakey => $metavalue ): ?>
<tr>
<th><?php echo $metakey; ?>:</th>
<td><?php echo $metavalue; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php
$contents = ob_get_contents();
ob_end_clean();
$admin_email = UM()->options()->get( ‘admin_email’ );
wp_mail( $admin_email,'Profile updated', $contents );
},9,3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment