Skip to content

Instantly share code, notes, and snippets.

@picocodes
Created October 2, 2023 08:11
Show Gist options
  • Save picocodes/0bc5f6df416af8f88fda9e12862361f4 to your computer and use it in GitHub Desktop.
Save picocodes/0bc5f6df416af8f88fda9e12862361f4 to your computer and use it in GitHub Desktop.
<?php
add_filter(
'getpaid_invoice_email_recipients',
function( $recipients, $email ) {
if ( 'completed_invoice' === $email->id ) {
$recipients[] = 'accounting@example.com';
}
return $recipients;
},
10,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment