Guest User

Untitled

a guest
May 25th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'wp_mail_from', 'mycustom_wp_mail_from' );
  4. function mycustom_wp_mail_from( $from_email ) {
  5. return 'abc@xyz.com';
  6. }
  7.  
  8. add_filter( 'wp_mail_from_name', 'mycustom_wp_mail_from_name' );
  9. function mycustom_wp_mail_from_name( $from_name ) {
  10. return 'John Doe';
  11. }
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment