Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Function to change email address
  2.  
  3. function wpb_sender_email( $original_email_address ) {
  4. return 'email@example.com';
  5. }
  6.  
  7. // Function to change sender name
  8. function wpb_sender_name( $original_email_from ) {
  9. return 'YOUR NAME';
  10. }
  11.  
  12. // Hooking up our functions to WordPress filters
  13. add_filter( 'wp_mail_from', 'wpb_sender_email' );
  14. add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement