코스모스팜 회원관리 플러그인을 사용하면, 메일주소를 변경할 때 인증메일이 발송된다. 그런데, 워드프레스에서 기본적으로 발송되는 메일은 [받은 메일함]에 잘 들어오는데, 코스모스팜 플러그인에서 발송되는 메일은 항상 스팸메일로 분류되었다.게다가 인증메일 내용으로 작성한 글에 줄바꿈이 그대로 반영되지 않아 빈 줄이 없게 표현되어 가독성이 떨어졌다. 인증메일 발송 함수 코스모스팜 플러그인에서 인증메일을 발송하는 함수를 확인해 보았다.cosmosfarm-members.php > cosmosfarm_members-send_verify_email($user,$verify_code)public function send($args){ add_filter('wp_mail_content_type', array($this, 'content_type')); add_filter('wp_mail', array($this, 'message_template')); $to = $args['to']; $subject = $args['subject']; $message = $args['message'] $result = wp_mail($to, $subject, $message,$header); remove_filter('wp_mail', array($this, 'message_template')); remove_filter('wp_mail_content_type', array($this, 'content_type')); return $result; } public function content_type(){ return 'text/html'; } public function message_template($args){ $subject = $args['subject']; ...