Prøv å lim inn det her i 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’);