Home / Admin / Change the Email Summary Email Address
Duplicate Snippet

Embed Snippet on Your Site

Change the Email Summary Email Address

This snippet will allow you to specify who the email summaries should be delivered to. On line 7, you’ll need to replace [email protected] with your desired email address.

If you would like to email more than one email address, please separate these with a comma. Example: [email protected], [email protected]

Code Preview
php
<?php
/* Change the email summary email address  
 * 
 * Original doc: https://wpmailsmtp.com/docs/changing-the-email-summary-email-address/
*/
add_filter( 'wp_mail_smtp_reports_emails_summary_send_to', function ( $email ) {
	return '[email protected]';
} );

Comments

Add a Comment