Guest User

Untitled

a guest
Jan 19th, 2018
323
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','xa_yoursite_wp_mail_from');
  2.  
  3. if( ! function_exists('xa_yoursite_wp_mail_from') )
  4. {
  5. function xa_yoursite_wp_mail_from($content_type) {
  6. return 'xadapter@example.com'; //Replace xadapter@example.com with required sender email Id
  7. }
  8. }
Add Comment
Please, Sign In to add comment