email.controller.js 1.41 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
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
import nodemailer from "nodemailer"

const SendMail = async (req,res) => {
    // console.log(req.body)
    const {email} = req.body
    console.log(email)
    const sendMail = async (email) => {
        // 메일을 전달해줄 객체
        const transporter = nodemailer.createTransport({
        //   service: "gmail",
          host: 'smtp.gmail.com',
          port: 465,
          secure: true,
          auth: {
            type: "OAuth2",
            user: "angelayoon99@gmail.com",
            clientId: process.env.GMAIL_CLIENTID,
            clientSecret: process.env.GMAIL_CLIENTSECRET,
            accessToken: process.env.GMAIL_ACCESS_TOKEN,
            refreshToken: process.env.GMAIL_REFRESH_TOKEN,
          },
          tls: {
            rejectUnauthorized: false,
          },
        });
      
        // 메일 옵션
        const mailOptions = {
          from: `윤지원 <angelayoon99@gmail.com>`,
          to: "jiwon5393@naver.com",
          subject: "사용자 계정 확인용 메일.",
          text: "Test Mail from Test Server.",
        };
      
        // 메일 전송
        try {
          const mailResult = await transporter.sendMail(mailOptions);
          console.log(`Mail sent - ID : ${mailResult.messageId}`);
        } catch (err) {
          console.log("Mail Sending Failuer.");
          console.log(err);
        }
      }
      
      sendMail(email);
}


export default { SendMail }