//email from name
function my_wp_mail_from_name($name) {
    return 'mydomain.com';
}
//email from email function
function my_wp_mail_from($content_type) {
  return 'system@mydomain.com';
}
add_filter('wp_mail_from','my_wp_mail_from');
add_filter('wp_mail_from_name','my_wp_mail_from_name');
There are currently 1 users browsing this thread. (0 members and 1 guests)