/ Published in: PHP
Expand |
Embed | Plain Text
add_filter('wp_mail_from', 'new_mail_from'); add_filter('wp_mail_from_name', 'new_mail_from_name'); function new_mail_from($old) { return '[email protected]'; } function new_mail_from_name($old) { return 'Your Blog Name'; }
You need to login to post a comment.
