#16999852 윈도우 서버에서 메일 발송 안되는 문제 해결. 새미기픈물님의 코드 반영

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5227 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-01-05 06:51:25 +00:00
parent 505f4f1c25
commit bf2496daba

View file

@ -66,10 +66,12 @@
$headers = sprintf(
"From: %s".$eol.
"To: %s".$eol.
"MIME-Version: 1.0".$eol.
"Content-Type: multipart/alternative;".$eol."\tboundary=\"%s\"".$eol.$eol.
"",
$this->getSender(),
$this->getReceiptor(),
$boundary
);
@ -93,7 +95,7 @@
$boundary
);
return mail($this->getReceiptor(), $this->getTitle(), $body, $headers);
return mail($this->receiptor_email, $this->getTitle(), $body, $headers);
}
function checkMailMX($email_address) {