We can change "From:" address using hooks in wordpress. Just copy this code and paste into your themes function.php file.
/* Custom mail content */
/*
Custom mail content
*/
//email from name function
function my_wp_mail_from_name($name) {
return get_bloginfo('name');
}
//email from email function
function my_wp_mail_from($content_type) {
return get_bloginfo('admin_email');
}
add_filter('wp_mail_from','my_wp_mail_from');
add_filter('wp_mail_from_name','my_wp_mail_from_name'); 
