Guest User

Untitled

a guest
Nov 19th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. // Function to change email sender
  3. function new_sender_email( $original_email_address ) {
  4. return 'hello@custom.com';
  5. }
  6.  
  7. // Function to change sender name
  8. function new_sender_name( $original_email_from ) {
  9. return 'Custom Name';
  10. }
  11.  
  12. // Hooking up our functions to WordPress filters
  13. add_filter( 'wp_mail_from', __NAMESPACE__ . '\\new_sender_email' );
  14. add_filter( 'wp_mail_from_name', __NAMESPACE__ . '\\new_sender_name' );
  15. ?>
Add Comment
Please, Sign In to add comment