Skip to content

Instantly share code, notes, and snippets.

@dparker1005
Last active April 3, 2024 14:12
Show Gist options
  • Save dparker1005/58fc23d8e1ca85d2201c72e2cfc0e711 to your computer and use it in GitHub Desktop.
Save dparker1005/58fc23d8e1ca85d2201c72e2cfc0e711 to your computer and use it in GitHub Desktop.
<?php
/**
* Trigger admin activity email.
*
* To send a test email, go to yoursite.com/?test_admin_activity_email=1
*/
function pmpro_test_activity_email() {
if ( ! empty( $_REQUEST['test_admin_activity_email'] ) ) {
$email = new PMPro_Admin_Activity_Email;
$email->sendAdminActivity();
}
}
add_action('init', 'pmpro_test_activity_email');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment