Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_filter('wp_mail_from', 'new_mail_from');
- add_filter('wp_mail_from_name', 'new_mail_from_name');
- function new_mail_from($old) {
- }
- function new_mail_from_name($old) {
- return 'Nome do seu site';
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement