Rob Bennet Interactive

  • Archive
  • RSS
  • Have a Question?
  • Submit

Change Wordpress Mail Headers

Been using this a lot lately since a bunch of really lame hosting providers won’t allow SMTP relays.  This will change the default WordPress From Name and Email:

function res_fromemail($email) {
    $wpfrom = get_option('admin_email');
    return $wpfrom;
}

function res_fromname($email){
    $wpfrom = get_option('blogname');
    return $wpfrom;
}

add_filter('wp_mail_from', 'res_fromemail');
add_filter('wp_mail_from_name', 'res_fromname');
  • 2 months ago
  • Permalink
  • Share
    Tweet
← Previous • Next →

About

@rwbennet
  • RSS
  • Random
  • Archive
  • Have a Question?
  • Submit
  • Mobile

Effector Theme by Carlo Franco.

Powered by Tumblr