<?php
class Sendmail
{
/*
* 메일발송을 위한 클래스
* 외부 SMTP 서버를 지원합니다.
* Author: Gwangsoo, Ryu (piver@ineemail.com)
*/
protected $UseSMTPServer = false; // 다른 SMTP 서버를 이용할 경우
protected $SMTPServer; // SMTP 서버 도메인
protected $SMTPPort = 25; // Port
protected $SMTPAuthUser; // SMTP 인증 사용자
protected $SMTPAuthPasswd; // SMTP 인증 비밀번호
protected $Socket;
protected $MailHeaderArray = array(); // 메일헤더를 담을 배열
protected $MailFrom; // 보내는 사람
protected $ReplyTo; // 회신받을 주소 (기본적으로 보내는 메일주소가 된다)
protected $MailTo = array(); // 받는 사람을 담을 배열
protected $Subject; // 메일제목
protected $MailBody; // 메일본문
protected $Charset = 'EUC-KR'; // 메일기본 캐릭터셋
protected $Attach = array(); // 인코딩된 첨부파일
protected $Boundary; // Bound
public function __construct($charset = 'EUC-KR')
{
$this->Boundary = md5(uniqid(microtime())); // 바운드를 초기화한다
if(!empty($charset)) $this->Charset = $charset; // 캐릭터셋
}
public function setFrom($email, $name = null)
{
// 보내는 메일
$this->setReplyTo($email);
return $this->MailFrom = ($name) ? $name . ' <' . $email . '>' : $email;
}
public function setReplyTo($email)
{
// 회신주소 - 기본적으로 보내는 메일을 회신주소로 셋한다
return $this->ReplyTo = $email;
}
public function setSubject($Subject)
{
// 제목
return $this->Subject = $Subject;
}
public function addTo($email, $name = null)
{
// 받는 메일을 추가한다
return $this->MailTo[$email] = $name;
}
public function addAttach($Filename, $Source)
{
// 첨부파일을 추가한다
$fp = fopen($Source, 'r'); // 소스파일을 연다
if($fp) {
$fBody = fread($fp, filesize($Source)); // 파일의 내용을 읽어온다
@fclose($fp);
$this->Attach[$Filename] = $fBody; // Attach 배열에 담는다
}
}
public function setMailBody($Body, $useHtml = true)
{
if(!$useHtml) { // 메일본문이 HTML 형식이 아니면 HTML 형식으로 바꾸어준다
$Body = '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=' . $this->Charset . '">
<style type="text/css">
BODY, TH, TD, DIV, SPAN, P, INPUT {
font-size:12px;
line-height:17px;
}
BODY, DIV { text-align:justify; }
</style>
</head>
<body>
' . nl2br($Body) . '
</body>
</html>
';
}
$this->MailBody = $Body; // 메일본문을 셋한다
}
protected function AddBasicHeader()
{
// 메일의 기본 헤더를 작성한다
$this->addHeader('From', $this->MailFrom);
$this->addHeader('User-Agent', 'Dabuilder Mail System');
$this->addHeader('X-Accept-Language', 'ko, en');
$this->addHeader('X-Sender', $this->ReplyTo);
$this->addHeader('X-Mailer', 'PHP');
$this->addHeader('X-Priority', 1);
$this->addHeader('Reply-to', $this->ReplyTo);
$this->addHeader('Return-Path', $this->ReplyTo);
if(count($this->Attach) > 0) { // 첨부파일이 있을 경우의 헤더
$this->addHeader('MIME-Version', '1.0');
$this->addHeader('Content-Type', 'Multipart/mixed; boundary = "' . $this->Boundary . '"');
} else { // 첨부파일이 없는 일반 메일일 경우의 헤더
$this->addHeader('Content-Type', 'text/html; charset=' . $this->Charset);
$this->addHeader('Content-Transfer-Encoding', '8bit');
}
}
protected function addHeader($Content, $Value)
{
// 메일헤더의 내용을 추가한다
$this->MailHeaderArray[$Content] = $Value;
}
protected function MailAttach()
{
// 첨부파일이 있을 경우 메일본문에 첨부파일을 덧붙인다
$arrRet = array();
if(count($this->Attach) > 0) {
foreach($this->Attach as $Filename => $fBody) {
$tmpAttach = "--" . $this->Boundary . "\r\n";
$tmpAttach .= "Content-Type: application/octet-stream\r\n";
$tmpAttach .= "Content-Transfer-Encoding: base64\r\n";
$tmpAttach .= "Content-Disposition: attachment; filename=\"" . $Filename . "\"\r\n\r\n";
$tmpAttach .= $this->encodingContents($fBody) . "\r\n\r\n";
$arrRet[] = $tmpAttach;
}
}
return implode('', $arrRet);
}
public function setUseSMTPServer($boolean = null)
{
// 외부 SMTP 서버를 이용할 것인지를 셋한다
return (is_null($boolean)) ? $this->UseSMTPServer : $this->UseSMTPServer = $boolean;
}
public function setSMTPServer($smtpServer = null, $port = 25)
{
// 외부 SMTP 서버를 이용할 경우 SMTP 서버를 설정한다
$this->SMTPPort = $port;
return (is_null($smtpServer)) ? $this->SMTPServer : $this->SMTPServer = $smtpServer;
}
public function setSMTPUser($User = null)
{
// 외부 SMTP 서버를 이용할 경우 로그인 사용자를 설정한다
return (is_null($User)) ? $this->SMTPAuthUser : $this->SMTPAuthUser = $User;
}
public function setSMTPPasswd($Passwd = null)
{
// 외부 SMTP 서버를 이용할 경우 로그인 비밀번호를 설정한다
return (is_null($Passwd)) ? $this->SMTPAuthPasswd : $this->SMTPAuthPasswd = $Passwd;
}
protected function encodingContents($contets)
{
// 메일본문을 인코딩하는 역할을 한다
return chunk_split(base64_encode($contets));
}
protected function makeMailHeader()
{
// 보낼 메일의 헤더를 작성한다
$header = "";
foreach($this->MailHeaderArray as $Key => $Val)
$header .= $Key . ": " . $Val . "\r\n";
return $header . "\r\n";
}
public function send()
{
// 메일을 전송한다
$this->AddBasicHeader(); // 메일의 기본헤더를 생성한다
if($this->UseSMTPServer) return $this->_SMTPSend(); // 외부 SMTP 서버를 이용할 경우
else return $this->_localSend(); // 로컬 SMTP 를 이용할 경우
}
protected function _SMTPSend()
{
/*
* 외부 SMTP 서버를 이용할 경우 소켓접속을 통해서 메일을 전송한다
*/
$Succ = 0;
if($this->SMTPServer) {
$this->addHeader('Subject', $this->Subject); // 메일헤더에 제목을 추가한다
$MailBody = $this->makeMailBody(); // 메일본문을 생성한다
if(count($this->MailTo) > 0) { // 받는 메일이 있으면 다음 작업을 반복한다
foreach($this->MailTo as $Email => $Name) {
$mailTo = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // 받는사람
$this->addHeader('To', $mailTo); // 메일헤더에 받는사람을 추가한다
$Contents = $this->makeMailHeader() . "\r\n" . $MailBody; // 메일헤더와 본문을 이용해 전송할 메일을 생성한다
$this->Socket = fsockopen($this->SMTPServer, $this->SMTPPort); // 소켓접속한다
if($this->Socket) {
$this->_sockPut('HELO ' . $this->SMTPServer);
if($this->SMTPAuthUser) { // SMTP 인증
$this->_sockPut('AUTH LOGIN');
$this->_sockPut(base64_encode($this->SMTPAuthUser));
$this->_sockPut(base64_encode($this->SMTPAuthPasswd));
}
$this->_sockPut('MAIL From:' . $this->ReplyTo); // 보내는 메일
$this->_sockPut('RCPT To:' . $Email); // 받는메일
$this->_sockPut('DATA');
$this->_sockPut($Contents); // 메일내용
$Result = $this->_sockPut('.'); // 전송완료
if(strpos($Result, 'Message accepted for delivery') !== false) $Succ++; // 성공여부판단
$this->_sockPut('QUIT'); // 접속종료
}
}
}
} else $Succ = $this->_localSend(); // 외부 SMTP 서버를 이용하지 않으면 로컬 SMTP를 이용해서 전송한다
return $Succ;
}
protected function _sockPut($str)
{
// 소켓접속시 내용전송 및 결과값 받기
@fputs($this->Socket, $str . "\r\n");
return @fgets($this->Socket, 512);
}
protected function _localSend()
{
$Contents = $this->makeMailBody(); // 메일본문을 작성한다
$Succ = 0;
foreach($this->MailTo as $Email => $Name) {
$toMail = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // 받는메일
$this->addHeader('To', $toMail); // 메일헤더에 받는메일을 추가한다
$header = $this->makeMailHeader(); // 헤더를 작성한다
if(mail($Email, $this->Subject, $Contents, $header)) $Succ++; // 성공여부 판단
}
return $Succ;
}
protected function makeMailBody()
{
// 메일의 본문을 작성한다
$mailbody = "";
if(count($this->Attach) > 0) { // 첨부파일이 있을 경우 본문을 인코딩하여 만든다
$mailbody .= "--" . $this->Boundary . "\r\n";
$mailbody .= "Content-Type: text/html; charset=" . $this->Charset . "\r\n";
$mailbody .= "Content-Transfer-Encoding: base64\r\n\r\n";
$mailbody .= $this->encodingContents($this->MailBody) . "\r\n\r\n";
$mailbody .= "\r\n" . $this->MailAttach();
} else $mailbody = $this->MailBody; // 첨부파일이 없으면 그냥 HTML 형식으로 메일본문을 생성한다
return $mailbody;
}
}
?>
class Sendmail
{
/*
* 메일발송을 위한 클래스
* 외부 SMTP 서버를 지원합니다.
* Author: Gwangsoo, Ryu (piver@ineemail.com)
*/
protected $UseSMTPServer = false; // 다른 SMTP 서버를 이용할 경우
protected $SMTPServer; // SMTP 서버 도메인
protected $SMTPPort = 25; // Port
protected $SMTPAuthUser; // SMTP 인증 사용자
protected $SMTPAuthPasswd; // SMTP 인증 비밀번호
protected $Socket;
protected $MailHeaderArray = array(); // 메일헤더를 담을 배열
protected $MailFrom; // 보내는 사람
protected $ReplyTo; // 회신받을 주소 (기본적으로 보내는 메일주소가 된다)
protected $MailTo = array(); // 받는 사람을 담을 배열
protected $Subject; // 메일제목
protected $MailBody; // 메일본문
protected $Charset = 'EUC-KR'; // 메일기본 캐릭터셋
protected $Attach = array(); // 인코딩된 첨부파일
protected $Boundary; // Bound
public function __construct($charset = 'EUC-KR')
{
$this->Boundary = md5(uniqid(microtime())); // 바운드를 초기화한다
if(!empty($charset)) $this->Charset = $charset; // 캐릭터셋
}
public function setFrom($email, $name = null)
{
// 보내는 메일
$this->setReplyTo($email);
return $this->MailFrom = ($name) ? $name . ' <' . $email . '>' : $email;
}
public function setReplyTo($email)
{
// 회신주소 - 기본적으로 보내는 메일을 회신주소로 셋한다
return $this->ReplyTo = $email;
}
public function setSubject($Subject)
{
// 제목
return $this->Subject = $Subject;
}
public function addTo($email, $name = null)
{
// 받는 메일을 추가한다
return $this->MailTo[$email] = $name;
}
public function addAttach($Filename, $Source)
{
// 첨부파일을 추가한다
$fp = fopen($Source, 'r'); // 소스파일을 연다
if($fp) {
$fBody = fread($fp, filesize($Source)); // 파일의 내용을 읽어온다
@fclose($fp);
$this->Attach[$Filename] = $fBody; // Attach 배열에 담는다
}
}
public function setMailBody($Body, $useHtml = true)
{
if(!$useHtml) { // 메일본문이 HTML 형식이 아니면 HTML 형식으로 바꾸어준다
$Body = '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=' . $this->Charset . '">
<style type="text/css">
BODY, TH, TD, DIV, SPAN, P, INPUT {
font-size:12px;
line-height:17px;
}
BODY, DIV { text-align:justify; }
</style>
</head>
<body>
' . nl2br($Body) . '
</body>
</html>
';
}
$this->MailBody = $Body; // 메일본문을 셋한다
}
protected function AddBasicHeader()
{
// 메일의 기본 헤더를 작성한다
$this->addHeader('From', $this->MailFrom);
$this->addHeader('User-Agent', 'Dabuilder Mail System');
$this->addHeader('X-Accept-Language', 'ko, en');
$this->addHeader('X-Sender', $this->ReplyTo);
$this->addHeader('X-Mailer', 'PHP');
$this->addHeader('X-Priority', 1);
$this->addHeader('Reply-to', $this->ReplyTo);
$this->addHeader('Return-Path', $this->ReplyTo);
if(count($this->Attach) > 0) { // 첨부파일이 있을 경우의 헤더
$this->addHeader('MIME-Version', '1.0');
$this->addHeader('Content-Type', 'Multipart/mixed; boundary = "' . $this->Boundary . '"');
} else { // 첨부파일이 없는 일반 메일일 경우의 헤더
$this->addHeader('Content-Type', 'text/html; charset=' . $this->Charset);
$this->addHeader('Content-Transfer-Encoding', '8bit');
}
}
protected function addHeader($Content, $Value)
{
// 메일헤더의 내용을 추가한다
$this->MailHeaderArray[$Content] = $Value;
}
protected function MailAttach()
{
// 첨부파일이 있을 경우 메일본문에 첨부파일을 덧붙인다
$arrRet = array();
if(count($this->Attach) > 0) {
foreach($this->Attach as $Filename => $fBody) {
$tmpAttach = "--" . $this->Boundary . "\r\n";
$tmpAttach .= "Content-Type: application/octet-stream\r\n";
$tmpAttach .= "Content-Transfer-Encoding: base64\r\n";
$tmpAttach .= "Content-Disposition: attachment; filename=\"" . $Filename . "\"\r\n\r\n";
$tmpAttach .= $this->encodingContents($fBody) . "\r\n\r\n";
$arrRet[] = $tmpAttach;
}
}
return implode('', $arrRet);
}
public function setUseSMTPServer($boolean = null)
{
// 외부 SMTP 서버를 이용할 것인지를 셋한다
return (is_null($boolean)) ? $this->UseSMTPServer : $this->UseSMTPServer = $boolean;
}
public function setSMTPServer($smtpServer = null, $port = 25)
{
// 외부 SMTP 서버를 이용할 경우 SMTP 서버를 설정한다
$this->SMTPPort = $port;
return (is_null($smtpServer)) ? $this->SMTPServer : $this->SMTPServer = $smtpServer;
}
public function setSMTPUser($User = null)
{
// 외부 SMTP 서버를 이용할 경우 로그인 사용자를 설정한다
return (is_null($User)) ? $this->SMTPAuthUser : $this->SMTPAuthUser = $User;
}
public function setSMTPPasswd($Passwd = null)
{
// 외부 SMTP 서버를 이용할 경우 로그인 비밀번호를 설정한다
return (is_null($Passwd)) ? $this->SMTPAuthPasswd : $this->SMTPAuthPasswd = $Passwd;
}
protected function encodingContents($contets)
{
// 메일본문을 인코딩하는 역할을 한다
return chunk_split(base64_encode($contets));
}
protected function makeMailHeader()
{
// 보낼 메일의 헤더를 작성한다
$header = "";
foreach($this->MailHeaderArray as $Key => $Val)
$header .= $Key . ": " . $Val . "\r\n";
return $header . "\r\n";
}
public function send()
{
// 메일을 전송한다
$this->AddBasicHeader(); // 메일의 기본헤더를 생성한다
if($this->UseSMTPServer) return $this->_SMTPSend(); // 외부 SMTP 서버를 이용할 경우
else return $this->_localSend(); // 로컬 SMTP 를 이용할 경우
}
protected function _SMTPSend()
{
/*
* 외부 SMTP 서버를 이용할 경우 소켓접속을 통해서 메일을 전송한다
*/
$Succ = 0;
if($this->SMTPServer) {
$this->addHeader('Subject', $this->Subject); // 메일헤더에 제목을 추가한다
$MailBody = $this->makeMailBody(); // 메일본문을 생성한다
if(count($this->MailTo) > 0) { // 받는 메일이 있으면 다음 작업을 반복한다
foreach($this->MailTo as $Email => $Name) {
$mailTo = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // 받는사람
$this->addHeader('To', $mailTo); // 메일헤더에 받는사람을 추가한다
$Contents = $this->makeMailHeader() . "\r\n" . $MailBody; // 메일헤더와 본문을 이용해 전송할 메일을 생성한다
$this->Socket = fsockopen($this->SMTPServer, $this->SMTPPort); // 소켓접속한다
if($this->Socket) {
$this->_sockPut('HELO ' . $this->SMTPServer);
if($this->SMTPAuthUser) { // SMTP 인증
$this->_sockPut('AUTH LOGIN');
$this->_sockPut(base64_encode($this->SMTPAuthUser));
$this->_sockPut(base64_encode($this->SMTPAuthPasswd));
}
$this->_sockPut('MAIL From:' . $this->ReplyTo); // 보내는 메일
$this->_sockPut('RCPT To:' . $Email); // 받는메일
$this->_sockPut('DATA');
$this->_sockPut($Contents); // 메일내용
$Result = $this->_sockPut('.'); // 전송완료
if(strpos($Result, 'Message accepted for delivery') !== false) $Succ++; // 성공여부판단
$this->_sockPut('QUIT'); // 접속종료
}
}
}
} else $Succ = $this->_localSend(); // 외부 SMTP 서버를 이용하지 않으면 로컬 SMTP를 이용해서 전송한다
return $Succ;
}
protected function _sockPut($str)
{
// 소켓접속시 내용전송 및 결과값 받기
@fputs($this->Socket, $str . "\r\n");
return @fgets($this->Socket, 512);
}
protected function _localSend()
{
$Contents = $this->makeMailBody(); // 메일본문을 작성한다
$Succ = 0;
foreach($this->MailTo as $Email => $Name) {
$toMail = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // 받는메일
$this->addHeader('To', $toMail); // 메일헤더에 받는메일을 추가한다
$header = $this->makeMailHeader(); // 헤더를 작성한다
if(mail($Email, $this->Subject, $Contents, $header)) $Succ++; // 성공여부 판단
}
return $Succ;
}
protected function makeMailBody()
{
// 메일의 본문을 작성한다
$mailbody = "";
if(count($this->Attach) > 0) { // 첨부파일이 있을 경우 본문을 인코딩하여 만든다
$mailbody .= "--" . $this->Boundary . "\r\n";
$mailbody .= "Content-Type: text/html; charset=" . $this->Charset . "\r\n";
$mailbody .= "Content-Transfer-Encoding: base64\r\n\r\n";
$mailbody .= $this->encodingContents($this->MailBody) . "\r\n\r\n";
$mailbody .= "\r\n" . $this->MailAttach();
} else $mailbody = $this->MailBody; // 첨부파일이 없으면 그냥 HTML 형식으로 메일본문을 생성한다
return $mailbody;
}
}
?>
[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7230 | 11년 전 | 3635 | ||
| 7229 | 11년 전 | 3759 | ||
| 7228 | 11년 전 | 3798 | ||
| 7227 | 11년 전 | 3920 | ||
| 7226 | 11년 전 | 2371 | ||
| 7225 | 11년 전 | 17460 | ||
| 7224 |
AngryDev
|
11년 전 | 1366 | |
| 7223 |
돌아온깡통
|
11년 전 | 1114 | |
| 7222 |
돌아온깡통
|
11년 전 | 1057 | |
| 7221 |
돌아온깡통
|
11년 전 | 888 | |
| 7220 |
돌아온깡통
|
11년 전 | 1009 | |
| 7219 |
돌아온깡통
|
11년 전 | 843 | |
| 7218 |
돌아온깡통
|
11년 전 | 670 | |
| 7217 |
돌아온깡통
|
11년 전 | 1059 | |
| 7216 |
돌아온깡통
|
11년 전 | 799 | |
| 7215 |
돌아온깡통
|
11년 전 | 718 | |
| 7214 |
돌아온깡통
|
11년 전 | 1066 | |
| 7213 |
돌아온깡통
|
11년 전 | 938 | |
| 7212 |
돌아온깡통
|
11년 전 | 722 | |
| 7211 |
돌아온깡통
|
11년 전 | 880 | |
| 7210 |
돌아온깡통
|
11년 전 | 904 | |
| 7209 |
돌아온깡통
|
11년 전 | 895 | |
| 7208 |
돌아온깡통
|
11년 전 | 1014 | |
| 7207 |
돌아온깡통
|
11년 전 | 628 | |
| 7206 |
돌아온깡통
|
11년 전 | 689 | |
| 7205 |
돌아온깡통
|
11년 전 | 874 | |
| 7204 |
돌아온깡통
|
11년 전 | 737 | |
| 7203 |
돌아온깡통
|
11년 전 | 749 | |
| 7202 |
돌아온깡통
|
11년 전 | 726 | |
| 7201 |
돌아온깡통
|
11년 전 | 680 | |
| 7200 |
돌아온깡통
|
11년 전 | 710 | |
| 7199 |
돌아온깡통
|
11년 전 | 1332 | |
| 7198 |
돌아온깡통
|
11년 전 | 661 | |
| 7197 |
돌아온깡통
|
11년 전 | 978 | |
| 7196 |
돌아온깡통
|
11년 전 | 887 | |
| 7195 |
돌아온깡통
|
11년 전 | 623 | |
| 7194 |
돌아온깡통
|
11년 전 | 653 | |
| 7193 |
돌아온깡통
|
11년 전 | 718 | |
| 7192 |
돌아온깡통
|
11년 전 | 748 | |
| 7191 |
joe031
|
11년 전 | 1276 | |
| 7190 | 11년 전 | 4162 | ||
| 7189 | 11년 전 | 1255 | ||
| 7188 |
잘살아보자
|
11년 전 | 970 | |
| 7187 | 11년 전 | 1450 | ||
| 7186 |
kiplayer
|
11년 전 | 7557 | |
| 7185 | 11년 전 | 1145 | ||
| 7184 |
잘살아보자
|
11년 전 | 2344 | |
| 7183 |
잘살아보자
|
11년 전 | 1158 | |
| 7182 |
잘살아보자
|
11년 전 | 1227 | |
| 7181 | 11년 전 | 1497 | ||
| 7180 |
하얀비요일
|
11년 전 | 992 | |
| 7179 |
잘살아보자
|
11년 전 | 999 | |
| 7178 | 11년 전 | 988 | ||
| 7177 | 11년 전 | 1012 | ||
| 7176 | 11년 전 | 1667 | ||
| 7175 |
|
11년 전 | 1050 | |
| 7174 |
kiplayer
|
11년 전 | 1181 | |
| 7173 | 11년 전 | 962 | ||
| 7172 |
잘살아보자
|
11년 전 | 4649 | |
| 7171 |
잘살아보자
|
11년 전 | 716 | |
| 7170 | 11년 전 | 1080 | ||
| 7169 |
초심의설렘
|
11년 전 | 1479 | |
| 7168 | 11년 전 | 1013 | ||
| 7167 |
잘살아보자
|
11년 전 | 5292 | |
| 7166 |
잘살아보자
|
11년 전 | 3445 | |
| 7165 | 11년 전 | 4962 | ||
| 7164 | 11년 전 | 839 | ||
| 7163 | 11년 전 | 1214 | ||
| 7162 |
울라라라우
|
11년 전 | 1400 | |
| 7161 | 11년 전 | 1272 | ||
| 7160 |
skyler
|
11년 전 | 1194 | |
| 7159 |
|
11년 전 | 714 | |
| 7158 |
|
11년 전 | 3361 | |
| 7157 |
잘살아보자
|
11년 전 | 2898 | |
| 7156 |
잘살아보자
|
11년 전 | 2232 | |
| 7155 |
잘살아보자
|
11년 전 | 1462 | |
| 7154 |
잘살아보자
|
11년 전 | 1451 | |
| 7153 | 11년 전 | 2904 | ||
| 7152 |
울라라라우
|
11년 전 | 835 | |
| 7151 | 11년 전 | 1070 | ||
| 7150 |
잘살아보자
|
11년 전 | 2389 | |
| 7149 |
잘살아보자
|
11년 전 | 3301 | |
| 7148 |
잘살아보자
|
11년 전 | 1199 | |
| 7147 |
잘살아보자
|
11년 전 | 770 | |
| 7146 |
잘살아보자
|
11년 전 | 1411 | |
| 7145 |
잘살아보자
|
11년 전 | 725 | |
| 7144 |
잘살아보자
|
11년 전 | 1321 | |
| 7143 |
잘살아보자
|
11년 전 | 767 | |
| 7142 |
잘살아보자
|
11년 전 | 1460 | |
| 7141 |
잘살아보자
|
11년 전 | 1202 | |
| 7140 |
잘살아보자
|
11년 전 | 2022 | |
| 7139 |
잘살아보자
|
11년 전 | 3686 | |
| 7138 |
잘살아보자
|
11년 전 | 3182 | |
| 7137 |
잘살아보자
|
11년 전 | 3637 | |
| 7136 |
잘살아보자
|
11년 전 | 1393 | |
| 7135 |
gooroo
|
11년 전 | 1618 | |
| 7134 |
열라뽕똬이
|
11년 전 | 2325 | |
| 7133 |
|
11년 전 | 1025 | |
| 7132 | 11년 전 | 1437 | ||
| 7131 | 11년 전 | 3580 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기