Code Duplication    Length = 5-6 lines in 2 locations

www/app/model/PHPMailer/PHPMailer/PHPMailer.php 2 locations

@@ 1030-1035 (lines=6) @@
1027
            return false;
1028
        }
1029
        if ('Reply-To' != $kind) {
1030
            if (!array_key_exists(strtolower($address), $this->all_recipients)) {
1031
                array_push($this->$kind, [$address, $name]);
1032
                $this->all_recipients[strtolower($address)] = true;
1033
1034
                return true;
1035
            }
1036
        } else {
1037
            if (!array_key_exists(strtolower($address), $this->ReplyTo)) {
1038
                $this->ReplyTo[strtolower($address)] = [$address, $name];
@@ 1037-1041 (lines=5) @@
1034
                return true;
1035
            }
1036
        } else {
1037
            if (!array_key_exists(strtolower($address), $this->ReplyTo)) {
1038
                $this->ReplyTo[strtolower($address)] = [$address, $name];
1039
1040
                return true;
1041
            }
1042
        }
1043
1044
        return false;