Skip to content

Instantly share code, notes, and snippets.

@anthonysbrown
Created November 21, 2016 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonysbrown/921b2a8f5a57e7a0a2bec248da270d4b to your computer and use it in GitHub Desktop.
Save anthonysbrown/921b2a8f5a57e7a0a2bec248da270d4b to your computer and use it in GitHub Desktop.
<?php
add_action('sp_cdm_email_send', 'do_something_after_email', 10,3);
function do_something_after_email($type,$file_id,$post){
if($type == 'sp_cu_admin_user_email'){
//do something here
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment