Last active
January 12, 2021 15:40
-
-
Save LMNTL/0a4575a128c7b4800306ff31140b121d to your computer and use it in GitHub Desktop.
Generate checkout email when using Add Member from Admin Add On for Paid Memberships Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Generate checkout email when using Add Member from Admin Add On for Paid Memberships Pro | |
*/ | |
function pmpro_send_member_notification( $user ) { | |
$pmproemail = new PMProEmail(); | |
$pmproemail->sendCheckoutEmail( $user ); | |
} | |
add_action( 'pmpro_add_member_added', 'pmpro_send_member_notification', 10, 2 ) |
Forked and fixed so it sends to user with their name etc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
needs a ; at the end of line 8