Framework/Spring Framework

(23.01.04)Spring ํ”„๋ ˆ์ž„์›Œํฌ : Java Mail Sending (POP์„ ํ†ตํ•œ ๋ฉ”์ผ๋ณด๋‚ด๊ธฐ)

ํ”„๋กœ๊ทธ๋ž˜๋จธ ์˜ค์›” 2023. 1. 4.

โ—โ— Java Mail Sending โ—โ—

 

 

Post Office

Post Office Protocol(POP)

POP -> POP3 (์š”์ฆ˜์€ pop3 ๋ฒ„์ „์„ ์“ด๋‹ค)

POP3 implemented server : POP3 Server(mail server)

Google POP3 Server is open

All Gmail users allowed

 

์„ค์ •์‚ฌํ•ญ

-Google 2 step Authorization

-Pc, Smart Phone

-App Secure codes

-application.properties  <- input here your App Secure Codes

 

 

Google 2 step Authorization , App Secure codes 2๋‹จ๊ณ„๋ณด์•ˆ ์„ค์ • ๋ฐ ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ๋งŒ๋“ค๊ธฐ 

 2๋‹จ๊ณ„ ์ธ์ฆ ์‹ ์ฒญ ์ ˆ์ฐจ
    - Google ๋กœ๊ทธ์ธ > ๋ธŒ๋ผ์šฐ์ € ์šฐ์ƒ๋‹จ ํ”„๋กœํ•„ ์ด๋ฏธ์ง€ > ๊ณ„์ •๊ด€๋ฆฌ > ๋ณด์•ˆ >
      Google์— ๋กœ๊ทธ์ธ/2๋‹จ๊ณ„ ์ธ์ฆ > ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์„ค์ • > ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณต์‚ฌ
    - ๋ณต์‚ฌ๋œ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ application.properties์— ์ž…๋ ฅ

2๋‹จ๊ณ„ ์ธ์ฆ์„ ์‚ฌ์šฉํ•ด์•ผํ•˜๊ณ  ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ƒ์„ฑํ•ด์•ผํ•œ๋‹ค.

 

 

 Google POP ์„ค์ •
    - Gmail๋กœ ์ด๋™ > ์šฐ์ธก ์ƒ๋‹จ ํ†ฑ๋‹ˆ๋ฐ”ํ€ด > [๋ชจ๋“ ์„ค์ • ๋ณด๊ธฐ] > ์ „๋‹ฌ ๋ฐ POP/IMAP >
      POP๋‹ค์šด๋กœ๋“œ / ๋ชจ๋“  ๋ฉ”์ผ์— ๋Œ€ํ•ด POP ์‚ฌ์šฉํ•˜๊ธฐ
    - IMAP ์•ก์„ธ์Šค / IMAP ์‚ฌ์šฉ > ๋ณ€๊ฒฝ์‚ฌํ•ญ ์ €์žฅ

GMail์˜ POP์„ค์ •์œผ๋กœ ๊ฐ€์•ผํ•œ๋‹ค.

 

 

 

 

-application.properties  <- input here your App Secure Codes

 

 

- dependency ์„ค์ •

 

 

 

 


โ—โ— Java์—์„œ ์ด๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ์‹ค์Šต โ—โ—

 

EmailController.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
 
@Slf4j
@Controller
@RequestMapping("/mail")
public class EmailController 
{
   @Autowired
   private EmailService svc;
 
   @GetMapping("/test")
   @ResponseBody
   public String sendTestMail()
   {
      boolean isSent = svc.sendSimpleText();
      //boolean isSent = svc.sendAttachMail();
      return isSent ? "๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ์„ฑ๊ณต":"๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ์‹คํŒจ";
   }
   
   @GetMapping("/auth/{code}")  // ๋ณด๋‚ธ ๋ฉ”์ผ์—์„œ ์ด์šฉ์ž๊ฐ€ ์ธ์ฆ ๋งํฌ๋ฅผ ํด๋ฆญํ–ˆ์„ ๋•Œ
   @ResponseBody
   public String index(@PathVariable("code")String code)
   {
      log.info("์ธ์ฆ์ฝ”๋“œ ํ™•์ธ={}", code);
      return "์ธ์ฆ์ฝ”๋“œํ™•์ธ=" + code;
   }
}
cs

 

 

 

EmailService.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import jakarta.activation.DataHandler;
import jakarta.activation.FileDataSource;
import jakarta.mail.BodyPart;
import jakarta.mail.Message;
import jakarta.mail.MessagingException;
import jakarta.mail.Multipart;
import jakarta.mail.internet.InternetAddress;
import jakarta.mail.internet.MimeBodyPart;
import jakarta.mail.internet.MimeMessage;
import jakarta.mail.internet.MimeMultipart;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.stereotype.Service;
 
import lombok.extern.slf4j.Slf4j;
 
@Slf4j
@Service
public class EmailService
{
   @Autowired
   private JavaMailSender sender;
   
   public boolean sendSimpleText()
   {
      List<String> receivers = new ArrayList<>();
      receivers.add("??????@gamil.com");
 
      String[] arrReceiver = (String[])receivers.toArray(new String[receivers.size()]);
      
      SimpleMailMessage simpleMailMessage = new SimpleMailMessage();
      
      simpleMailMessage.setTo(arrReceiver);
      simpleMailMessage.setSubject("Spring Boot Mail Test");
      simpleMailMessage.setText("์Šคํ”„๋ง์—์„œ ๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ํ…Œ์ŠคํŠธ");
      //SimpleMailMessage๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ html ์„ ์ „๋‹ฌํ•˜๋”๋ผ๋„ ์ˆ˜์‹ ์ž์˜ ํ™”๋ฉด์—๋Š” html์ด ํ•ด์„๋˜์ง€ ์•Š์Œ
      simpleMailMessage.setText("<a href='/mail/auth/"+ createRandomStr()+"'>์ธ์ฆ</a>");
      
      sender.send(simpleMailMessage);
 
      return true;
   }
   
   private String createRandomStr()
   {
      UUID randomUUID = UUID.randomUUID();
      return randomUUID.toString().replaceAll("-""");
   }
   
   public boolean sendMimeMessage()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("??????@gamil.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(Text) ํ…Œ์ŠคํŠธ");
         
         mimeMessage.setContent("This is mimemessage""text/plain;charset=utf-8");
         
         sender.send(mimeMessage);
         return true;
      } catch (MessagingException e) {
         log.error("์—๋Ÿฌ={}", e);
      }
 
      return false;
   }
   
   public boolean sendHTMLMessage()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("??????@gamil.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(HTML) ํ…Œ์ŠคํŠธ");
         
         mimeMessage.setContent("<a href='http://localhost/mail/auth/abc123'>๋ฉ”์ผ์ฃผ์†Œ ์ธ์ฆ</a>""text/html;charset=utf-8");
         
         sender.send(mimeMessage);
         return true;
      } catch (MessagingException e) {
         log.error("์—๋Ÿฌ={}", e);
      }
 
      return false;
   }
   
   public boolean sendAttachMail()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
      
      Multipart multipart = new MimeMultipart();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("??????@gamil.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(์ฒจ๋ถ€ํŒŒ์ผ) ํ…Œ์ŠคํŠธ");
         
         // Fill the message
         BodyPart messageBodyPart = new MimeBodyPart();
 
         messageBodyPart.setContent("<a href='http://localhost/mail/auth/abc123'>๋ฉ”์ผ์ฃผ์†Œ ์ธ์ฆ</a>""text/html;charset=utf-8");
         
         multipart.addBodyPart(messageBodyPart);
          
         // Part two is attachment
         messageBodyPart = new MimeBodyPart();
         File file = new File("C:/test/์ฒจ๋ถ€.txt");
         FileDataSource fds = new FileDataSource(file);
         messageBodyPart.setDataHandler(new DataHandler(fds));
         
         String fileName = fds.getName();
         messageBodyPart.setFileName(fileName);
         
         multipart.addBodyPart(messageBodyPart);
          
         // Put parts in message
         mimeMessage.setContent(multipart);
         
         sender.send(mimeMessage);
         
         return true;
      }catch(Exception ex) {
         log.error("์—๋Ÿฌ={}", ex);
      }
      return false;
   }
}
cs

 

 

์‹คํ–‰๊ฒฐ๊ณผ : 

 

 

 

 

 

โ—โ—Java Mail Sending์„ ์ด์šฉํ•˜์—ฌ ์ด๋ฉ”์ผ ์ธ์ฆ ์‹œ์Šคํ…œ ๋งŒ๋“ค๊ธฐโ—โ—

 

 

 

EmailController.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.ezen.spring.web.service.EmailService;
import jakarta.servlet.http.HttpSession;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
 
@Slf4j
@Controller
@RequestMapping("/mail")
public class EmailController {
 
    
    @Autowired
    private EmailService svc;
 
    @GetMapping("/test")
    @ResponseBody
    public String sendTestMail() {
        boolean isSent = svc.sendSimpleText();
        // boolean isSent = svc.sendAttachMail();
        return isSent ? "๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ์„ฑ๊ณต" : "๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ์‹คํŒจ";
    }
    /*
    @GetMapping("/auth/{code}") // ๋ณด๋‚ธ ๋ฉ”์ผ์—์„œ ์ด์šฉ์ž๊ฐ€ ์ธ์ฆ ๋งํฌ๋ฅผ ํด๋ฆญํ–ˆ์„ ๋•Œ
    @ResponseBody
    public String index(@PathVariable("code") String code) {
        boolean result = svc.checkMessage(code);
        log.info("์ธ์ฆ์ฝ”๋“œ ํ™•์ธ={}", code);
        return "์ธ์ฆ์ฝ”๋“œํ™•์ธ=" + code;
    }*/
    @GetMapping("/auth"// ๋ณด๋‚ธ ๋ฉ”์ผ์—์„œ ์ด์šฉ์ž๊ฐ€ ์ธ์ฆ ๋งํฌ๋ฅผ ํด๋ฆญํ–ˆ์„ ๋•Œ
    @ResponseBody
    public String index(HttpSession session) {
        Map<String,Object> mailresult = svc.checkMessage(session);
        mailresult.get("code");
        log.info("์ธ์ฆ์ฝ”๋“œ๋ณด๋ƒ„"+mailresult.get("code"));
        return "์ธ์ฆ์ฝ”๋“œ๋ณด๋ƒ„";
    }
    @GetMapping("/auth/{code}"// ๋ณด๋‚ธ ๋ฉ”์ผ์—์„œ ์ด์šฉ์ž๊ฐ€ ์ธ์ฆ ๋งํฌ๋ฅผ ํด๋ฆญํ–ˆ์„ ๋•Œ
    @ResponseBody
    public String index(@PathVariable("code"String code,HttpSession session) {
        
        boolean result = svc.checkMessageResult(code,session);
        
        log.info("์ธ์ฆ ํ™•์ธ={}", result);
        return "์ธ์ฆํ™•์ธ=" + result;
    }
}
cs

 

 

 

EmailService.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import java.io.File;
import java.util.*;
import java.util.UUID;
import jakarta.activation.DataHandler;
import jakarta.activation.FileDataSource;
import jakarta.mail.BodyPart;
import jakarta.mail.Message;
import jakarta.mail.MessagingException;
import jakarta.mail.Multipart;
import jakarta.mail.internet.InternetAddress;
import jakarta.mail.internet.MimeBodyPart;
import jakarta.mail.internet.MimeMessage;
import jakarta.mail.internet.MimeMultipart;
import jakarta.security.auth.message.callback.PrivateKeyCallback.Request;
import jakarta.servlet.http.HttpSession;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.stereotype.Service;
 
import lombok.extern.slf4j.Slf4j;
 
@Slf4j
@Service
public class EmailService
{
   @Autowired
   private JavaMailSender sender;
   
   private HttpSession session;
   
   public void setSession(HttpSession session) {
        this.session = session;
    }
    
   
   public boolean sendSimpleText()
   {
      List<String> receivers = new ArrayList<>();
      //๋ฉ”์ผ ๋ณด๋‚ผ ์ˆ˜์‹ ์ž๋ฅผ db์—์„œ ์จ๋‚ด์„œ ๋ฆฌ์ŠคํŠธ์— ๋‹ด์•„์„œ ๋ฐ˜๋ณต๋ฌธ์„ ๋Œ๋ฆฐ๋‹ค.
      receivers.add("???????@gmail.com");
 
      String[] arrReceiver = (String[])receivers.toArray(new String[receivers.size()]);
                                                          //๋ฐฐ์—ด์˜ ์ €์žฅ๊ณต๊ฐ„ ํ™•๋ณด(๋ฉ”๋ชจ๋ฆฌ ํฌ๊ธฐ์ง€์ •)
      
      SimpleMailMessage simpleMailMessage = new SimpleMailMessage();
      //์‹ฌํ”Œ์˜ ๋œป์€ ์ผ๋ฐ˜ ํ…์ŠคํŠธ๋งŒ ๋ณด๋‚ด๊ฒ ๋‹ค๋Š” ๋œป
      //๋ฉ”์„ธ์ง€ ์ข…๋ฅ˜:์‹ฌํ”Œ๋ฉ”์ผ๋ฉ”์„ธ์ง€ , ๋งˆ์ž„๋ฉ”์„ธ์ง€
      
      simpleMailMessage.setTo(arrReceiver);
      simpleMailMessage.setSubject("Spring Boot Mail Test");
      simpleMailMessage.setText("์Šคํ”„๋ง์—์„œ ๋ฉ”์ผ ๋ณด๋‚ด๊ธฐ ํ…Œ์ŠคํŠธ");
      //SimpleMailMessage๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ html ์„ ์ „๋‹ฌํ•˜๋”๋ผ๋„ ์ˆ˜์‹ ์ž์˜ ํ™”๋ฉด์—๋Š” html์ด ํ•ด์„๋˜์ง€ ์•Š์Œ
      simpleMailMessage.setText("<a href='/mail/auth/"+ createRandomStr()+"'>์ธ์ฆ</a>");
                                                          //์œ ์ผํ•œ ์ธ์ฆ๋ฌธ์ž์—ด์„ ์ƒ์„ฑํ•˜๋Š” ์ž๋ฐ” ๋ฉ”์†Œ๋“œ
      
      sender.send(simpleMailMessage);
 
      return true;
   }
   
   private String createRandomStr()
   {
      UUID randomUUID = UUID.randomUUID();
      return randomUUID.toString().replaceAll("-""");
                                      //"-"๋ฅผ ์—†์•ฐ
   }
   
   public boolean sendMimeMessage()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("???????@gmail.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(Text) ํ…Œ์ŠคํŠธ");
         
         mimeMessage.setContent("This is mimemessage""text/plain;charset=utf-8");
                                                     //text/html or text/plain
         
         sender.send(mimeMessage);
         return true;
      } catch (MessagingException e) {
         log.error("์—๋Ÿฌ={}", e);
      }
 
      return false;
   }
   
   public boolean sendHTMLMessage()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("???????@gmail.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(HTML) ํ…Œ์ŠคํŠธ");
         
         mimeMessage.setContent("<a href='http://localhost/mail/auth/abc123'>๋ฉ”์ผ์ฃผ์†Œ ์ธ์ฆ</a>""text/html;charset=utf-8");
         
         sender.send(mimeMessage);
         return true;
      } catch (MessagingException e) {
         log.error("์—๋Ÿฌ={}", e);
      }
 
      return false;
   }
   
   public boolean sendAttachMail()
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
      
      Multipart multipart = new MimeMultipart();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("parkjh080@gmail.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(์ฒจ๋ถ€ํŒŒ์ผ) ํ…Œ์ŠคํŠธ");
         
         // Fill the message ๋ฐ”๋”” ํŒŒํŠธ๋ฅผ ๋งŒ๋“ค์–ด์•ผํ•œ๋‹ค.
         BodyPart messageBodyPart = new MimeBodyPart();
 
         messageBodyPart.setContent("<a href='http://localhost/mail/auth/abc123'>๋ฉ”์ผ์ฃผ์†Œ ์ธ์ฆ</a>""text/html;charset=utf-8");
         
         multipart.addBodyPart(messageBodyPart);
          
         // Part two is attachment
         messageBodyPart = new MimeBodyPart();
         File file = new File("C:/test/์ฒจ๋ถ€.txt");
         FileDataSource fds = new FileDataSource(file);
         messageBodyPart.setDataHandler(new DataHandler(fds));
         
         String fileName = fds.getName();
         messageBodyPart.setFileName(fileName);
         
         multipart.addBodyPart(messageBodyPart);
          
         // Put parts in message
         mimeMessage.setContent(multipart);
         
         sender.send(mimeMessage);
         
         return true;
      }catch(Exception ex) {
         log.error("์—๋Ÿฌ={}", ex);
      }
      return false;
   }
   public Map<String,Object> checkMessage(HttpSession session)
   {
      MimeMessage mimeMessage = sender.createMimeMessage();
 
      try {
         InternetAddress[] addressTo = new InternetAddress[1];
         addressTo[0= new InternetAddress("???????@gmail.com");
 
         mimeMessage.setRecipients(Message.RecipientType.TO, addressTo);
 
         mimeMessage.setSubject("๋งˆ์ž„ ๋ฉ”์‹œ์ง€(HTML) ํ…Œ์ŠคํŠธ");
         String str = createRandomStr();//์œ ์ผํ•œ ์ธ์ฆ๋ฌธ์ž์—ด์„ ์ƒ์„ฑํ•˜๋Š” ์ž๋ฐ” ๋ฉ”์†Œ๋“œ
         
         mimeMessage.setContent("<a href='http://localhost/mail/auth/"+str+"'>๋ฉ”์ผ์ฃผ์†Œ ์ธ์ฆ</a>""text/html;charset=utf-8");
         
         sender.send(mimeMessage);
         session.setAttribute("code", str);
         Map<String,Object> map = new HashMap<>();
         map.put("result"true);
         map.put("code",str);
         return map;
      } catch (MessagingException e) {
         log.error("์—๋Ÿฌ={}", e);
      }
 
      return null;
   }
   public boolean checkMessageResult(String code,HttpSession session)
   {
       log.info("์ฝ”๋“œ"+session.getAttribute("code"));
       if(session.getAttribute("code").equals(code)) {
           
           return true;
       }
       return false;
   }
}
 
cs

160 ~ 195 ๊นŒ์ง€ ๋ฉ”์†Œ๋“œ ํ™œ์šฉ

 

 

์‹คํ–‰๊ฒฐ๊ณผ : 

 

 

 

 

 

 

 

 

 

 

์ดํด๋ฆฝ์Šค ์ฝ˜์†”์ฐฝ:

๋Œ“๊ธ€