From d4f1be44c403a191b250eba13798f18a1c0daed9 Mon Sep 17 00:00:00 2001 From: yehudah Date: Fri, 5 Oct 2018 12:17:45 +0000 Subject: add filter to change the notify email --- Postman/notifications/PostmanMailNotify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Postman/notifications') diff --git a/Postman/notifications/PostmanMailNotify.php b/Postman/notifications/PostmanMailNotify.php index 795afaa..0313f7f 100644 --- a/Postman/notifications/PostmanMailNotify.php +++ b/Postman/notifications/PostmanMailNotify.php @@ -4,7 +4,7 @@ class PostmanMailNotify implements Postman_Notify { public function send_message($message) { - $to_email = get_bloginfo( 'admin_email' ); + $to_email = apply_filters( 'post_smtp_notify_email',get_bloginfo( 'admin_email' ) ); $domain = get_bloginfo( 'url' ); mail( $to_email, "{$domain}: " . __( 'Post SMTP email error', Postman::TEXT_DOMAIN ), $message , '', "-f{$to_email}" ); -- cgit v1.2.3