From 82c8c9aec6ab9f9514ea78f5b7d5bbbcc4df0520 Mon Sep 17 00:00:00 2001 From: Ian Dunn Date: Wed, 27 Apr 2022 17:02:49 -0700 Subject: [PATCH] Email: Update `Reply-To` address to new mailbox. --- plugins/wporg-5ftf/includes/email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/wporg-5ftf/includes/email.php b/plugins/wporg-5ftf/includes/email.php index e3a29b2..18456ad 100644 --- a/plugins/wporg-5ftf/includes/email.php +++ b/plugins/wporg-5ftf/includes/email.php @@ -25,7 +25,7 @@ defined( 'WPINC' ) || die(); function send_email( $to, $subject, $message, $pledge_id ) { $headers = array( 'From: WordPress - Five for the Future ', - 'Reply-To: support@wordcamp.org', + 'Reply-To: getinvolved@wordpress.org', ); $result = wp_mail( $to, $subject, $message, $headers );