bainternet
7/3/2013 - 5:38 PM

WP_EMAIL_FROM simple class to fix the from name and email for emails sent by WordPress

WP_EMAIL_FROM simple class to fix the from name and email for emails sent by WordPress

<?php
/**
 * WP_EMAIL_FROM
 * simple class to fix the from name and email for 
 * emails sent by WordPress
 */
if (!class_exists('WP_EMAIL_FROM')){
    class WP_EMAIL_FROM{ 
        function __construct(){
            add_filter('wp_mail_from', array($this,'res_fromemail'));
            add_filter('wp_mail_from_name',  array($this,'res_fromname'));
        }

        function res_fromemail($email) {
            $wpfrom = get_option('admin_email');
            return $wpfrom;
        }
         
        function res_fromname($email){
            $wpfrom = get_option('blogname');
            return $wpfrom;
        }
    }
    $email = new WP_EMAIL_FROM();
}//end if