Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Function to change email address
- function wpb_sender_email( $original_email_address ) {
- return '[email protected]'; // Replace with your desired email address
- }
- // Function to change sender name
- function wpb_sender_name( $original_email_from ) {
- return 'SENDER NAME'; // Replace with your desired sender name
- }
- // Hooking up our functions to WordPress filters
- add_filter( 'wp_mail_from', 'wpb_sender_email' );
- add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement