Skip to content

Instantly share code, notes, and snippets.

@danielmcclure
Created August 22, 2023 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielmcclure/a44b32d021a65402598343fd6ee5c1bd to your computer and use it in GitHub Desktop.
Save danielmcclure/a44b32d021a65402598343fd6ee5c1bd to your computer and use it in GitHub Desktop.
Change Default WordPress Sender Email
<?php
// Edit the address and name below
add_filter( 'wp_mail_from', function ( $original_email_address ) {
return 'your.email@example.com';
} );
// Change the From name.
add_filter( 'wp_mail_from_name', function ( $original_email_from ) {
return 'Your Name';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment