Normally WordPress emails are send through wordpress@yoursite.com , if you need to change the default wordpress email to your own email like the email used at your username or your name
This is quit gonna be quick and simple just copy the below code in functions.php :
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');