Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created November 15, 2024 18:14
Show Gist options
  • Save hivepress/2f4f99451d1781300651eb6e2f7e038b to your computer and use it in GitHub Desktop.
Save hivepress/2f4f99451d1781300651eb6e2f7e038b to your computer and use it in GitHub Desktop.
Send a copy of each new message to a custom email address #hivepress #messages
<?php
add_action(
'hivepress/v1/emails/message_send/send',
function( $email ) {
$tokens = $email->get_tokens();
$subject = 'Message from ' . $tokens['sender']->get_username() . ' to ' . $tokens['recipient']->get_username();
$body = $tokens['message']->get_text();
wp_mail( 'messages@example.com', $subject, $body );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment