-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
72 lines (53 loc) · 2.12 KB
/
main.py
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
import ssl
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.application import MIMEApplication
import ywc_email_template
sender_email = "[email protected]"
sender_password = input("Input password and hit enter: ")
subject = "[YWC19] ส่งเอกสารรับรองการคัดเลือกเข้าร่วมโครงการ - กุลกาญจน์ เตชะวณิชย์"
msg = MIMEMultipart()
msg["From"] = sender_email
recipients = "[email protected]"
msg["To"] = recipients
# to = "[email protected]"
# cc = "[email protected]"
# recipients = to.split(",") + cc.split(",")
# msg['To'] = to
# msg['Cc'] = cc
msg["Subject"] = subject
msgText = MIMEText(
ywc_email_template.build_camper_acceptance_letter_email(
camper_title="นางสาว",
camper_fullname="กุลกาญจน์ เตชะวณิชย์",
camper_major="Sustainablity",
),
"html",
)
msg.attach(msgText)
with open("YWC19 - หนังสือรับรอง camper.pdf", "rb") as file:
pdf = MIMEApplication(file.read())
pdf.add_header(
"Content-Disposition",
"attachment",
filename="YWC19 หนังสือรับรองการคัดเลือกเข้าร่วมโครงการ - นางสาวกุลกาญจน์ เตชะวณิชย์.pdf",
)
msg.attach(pdf)
with open("เอกสารโครงการ Young Webmaster Camp ครั้งที่ 19.pdf", "rb") as file:
pdf = MIMEApplication(file.read())
pdf.add_header(
"Content-Disposition",
"attachment",
filename="เอกสารโครงการ Young Webmaster Camp ครั้งที่ 19.pdf",
)
msg.attach(pdf)
context = ssl.create_default_context()
with smtplib.SMTP_SSL("smtp.gmail.com", 465, context=context) as smtp:
smtp.login(sender_email, sender_password)
smtp.sendmail(
sender_email,
recipients,
msg.as_string(),
)
print("success!")