"10-2-1 사이트 관리"에서 function.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');