Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active August 29, 2015 14:18
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 JudeRosario/96013411f430b01cac01 to your computer and use it in GitHub Desktop.
Save JudeRosario/96013411f430b01cac01 to your computer and use it in GitHub Desktop.
Appointments + Modify Headers
add_filter( 'app_message_headers', 'custom_headers' );
function custom_headers( $message_headers ){
$extra_mail = "admin@example.com" ;
return $message_headers."CC: ".$extra_mail."\n" ;
}
@JudeRosario
Copy link
Author

Just copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one and put your own email address at $extra_mail.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment