Advertisement
hostmaria

How to change the Sender Name and Email in WordPress

Jan 3rd, 2024
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // Function to change email address
  2. function wpb_sender_email( $original_email_address ) {
  3. return '[email protected]'; // Replace with your desired email address
  4. }
  5.  
  6. // Function to change sender name
  7. function wpb_sender_name( $original_email_from ) {
  8. return 'SENDER NAME'; // Replace with your desired sender name
  9. }
  10.  
  11. // Hooking up our functions to WordPress filters
  12. add_filter( 'wp_mail_from', 'wpb_sender_email' );
  13. add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement