Skip to content

Instantly share code, notes, and snippets.

@newmediologo
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save newmediologo/83e5f9a56eaec5156d9d to your computer and use it in GitHub Desktop.
Save newmediologo/83e5f9a56eaec5156d9d to your computer and use it in GitHub Desktop.
Mittente E-Mail WordPress
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
function new_mail_from($old) {
return 'dalmiosito@ilmiosito.it';
}
function new_mail_from_name($old) {
return 'Messaggio dal Blog';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment