Advertisement
Guest User

Untitled

a guest
Apr 8th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /*change email from wordpress at domain dot com */
  2. add_filter('wp_mail_from', 'new_mail_from');
  3. add_filter('wp_mail_from_name', 'new_mail_from_name');
  4.  
  5. function new_mail_from($old) {
  6. return 'noreply@yourdomain.com';
  7. }
  8. function new_mail_from_name($old) {
  9. return 'Whatever Name you want';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement