There was some discussion on it a few weeks ago you can find here:
https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/
According to that and looking through the core, you can accomplish that with one of two methods:
define('RECOVERY_MODE_EMAIL', '[email protected]');
OR
add_filter( 'recovery_mode_email', 'recovery_email_update', 10, 2 );
function recovery_email_update( $email, $url ) {
$email['to'] = '[email protected]';
return $email;
}
Hope that helps!!
Related Posts:
- Recommend a guide to catching plugin errors, please?
- Fatal error in wp-admin/customize.php after fresh install due to null $wp_customize
- Display “a generated one [avatar] based on their e-mail address”
- SMTP connect() failed PHPmailer – PHP
- What is the difference between ports 465 and 587?
- Email validation in Ruby on Rails?
- Is there a way to embed an iframe in an email with text that updates?
- How to change the default registration email ? (plugin and/or non-plugin)
- Sending multipart (text/html) emails via wp_mail() will likely get your domain banned
- Add validation and error handling when saving custom fields?
- How to set SMTP programmatically
- changing notification emails from WordPress @mydomain.net to something else
- Disable user registration password email
- No Error Log File, no debug info
- Alert Email when any Post or Page is Changed
- Do something after sending email
- How do I customise the new user welcome email
- How do you update user_email on the front end in WP 3.3?
- Missing URL in password reset email
- User Without Email?
- Undefined offset: 0 in > […] /wp-includes/capabilities.php on line 1067
- Why do I get the timeout warning?
- “Reply-to Address” Email
- prevent users from changing their email address
- Customizing the Subject Field in WordPress’ Notification Emails?
- Disable new user notification to admin email
- Allow Duplicate Email Address for Different Users
- Email confirmation on registration
- How to log plugin errors to plugin error_log file
- Customizing lost password email
- Create custom welcome email without a plugin
- Include HTML template file in wp_mail
- Email sent from WordPress has HTML tags
- Reset Password – change from name and email address
- How do i send mail with custom Form Data using WordPress
- Email as Username in registration
- Email stats at Ma.tt contact form
- Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 20480 bytes)
- Fwd: [Website Name] Notice of Email Change [closed]
- Send all WPMU emails via SMTP
- Send mail to wordpress admin
- How to add usermeta to “Notice of Email Change” email message
- Send a confirmation of user role upgrade conditionally
- WordPress error – PHP Fatal error: Uncaught Error: Call to undefined function register_block_type_from_metadata()
- WP Cron emails not working
- Dynamically send pdf attached to post with contact form 7 [closed]
- Few chars getting replaced with ‘=’ in mail content in wp_mail()
- White screen error for a custom theme
- Locked out of my own blog and password reset not working
- wp_mail recipient array not sending?
- get_terms return errors
- Change Password notification text on mail
- Transferring contact form input to an email account without using an email-proxy
- Should I use the standard wp_mail() function for a premium theme?
- On form submission how to send 2 email to different users
- How to Configure SMTP on wordpress Cant Send Email
- email wordpress users using BCC
- Problem : deletion failed, the theme requested does not exist
- Contact Form 7 + Configure SMTP: Sender email appearing as my own email [closed]
- What is causing this error? “Warning: Invalid argument”
- email sends from [email protected] even though I have it set to something else
- Does wordpress have an error log?
- How to add line breaks to $email[‘body’] when using auto_core_update_email hook
- How to fix broken upgrade to 3.1
- Handle registrations in WordPress when user doesn’t have any email?
- Joining confirmation email
- How to sent one form values to 2 different sites in wordpress
- How to setup SMTP for only one specific wp_mail()
- apostrophe in email name
- Sanitizing and validating email field
- Disable WP notifications for commenting on own posts
- General Setting Allow Multiple Email Notification
- Must I change the admin user email address while changing the general email address?
- User invite email not delivered – related to subdomain?
- Can I configure WordPress to use postfix without a plugin?
- Ability to download only after email supplied [closed]
- Batch Emails with wp_mail()
- ‘Invalid post type’ error when importing from one site to another
- Email notification after registration in WordPress
- Check Title Unique Or Not and If not error message and dont save
- Subscribe from another website to the same list [closed]
- Obfuscating Email Addresses in Form Fields
- Email ‘from address’ has a www in it
- File available but giving 404 in wordpress
- How to customize the critical error message?
- How to validate website field in contact form 7?
- How to Change WooCommerce new order email?
- Trigger WordPress Actions from Email?
- WordPress E-mail Config
- How to make my plugin code die gracefully
- Is there no way to send email using SMTP without plugin or custom coding?
- How to pass external variables to the wp_new_user_notification_email filter?
- Can’t Change Theme And White Screen When Activating Any Plugin
- How to change WordPress email notification sender?
- Contact form sender email
- PHP mail() works but wp_mail() does not
- Send email daily from WordPress site
- WordPress Add New User – Send an Activation Email
- Send email only upon draft
- Mechanism to send to users of secured WordPress install new notifications by SMS or email?