Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kimwhite/45fabb16ff7fad52972348088bb893d5 to your computer and use it in GitHub Desktop.

Select an option

Save kimwhite/45fabb16ff7fad52972348088bb893d5 to your computer and use it in GitHub Desktop.
CC an email address on the 'cancel_admin' email PMPro sends out.
<?php
/**
* CC an email address on the 'cancel_admin' email PMPro sends out.
* Add this code to your site by following - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_email_headers_admin_cancel_emails($headers, $email) {
//cc emails already going to admin_email
if( $email->template == 'membership_recurring' ) {
//add cc
$headers[] = 'CC:' . '[email protected]'; // type in your email address here please.
}
return $headers;
}
add_filter('pmpro_email_headers', 'my_pmpro_email_headers_admin_cancel_emails', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment