Guest User

Untitled

a guest
Jan 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter('wp_mail_from_name','xa_yoursite_wp_mail_from_name');
  2.  
  3. if( ! function_exists('xa_yoursite_wp_mail_from_name') )
  4. {
  5. function xa_yoursite_wp_mail_from_name($name) {
  6. return 'Xadapter Support'; //Replace Xadapter Support with required outbound name
  7. }
  8. }
Add Comment
Please, Sign In to add comment