Skip to content

Instantly share code, notes, and snippets.

@knolaust
Created November 17, 2025 14:53
Show Gist options
  • Select an option

  • Save knolaust/dcf8c269b2c0ff111c0a1eb43af9ae38 to your computer and use it in GitHub Desktop.

Select an option

Save knolaust/dcf8c269b2c0ff111c0a1eb43af9ae38 to your computer and use it in GitHub Desktop.
Force WordPress core system emails to use a specific from address & name.
<?php
/**
* Force WordPress core system emails to use a specific from address & name.
*/
add_filter( 'wp_mail_from', function( $email ) {
return '[email protected]'; // your domain address
});
add_filter( 'wp_mail_from_name', function( $name ) {
return 'From Name'; // whatever label you want
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment