-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_mail.py
179 lines (148 loc) · 6.01 KB
/
send_mail.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
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
"""
알림 발송 - Mail
"""
import json
import uuid
from datetime import datetime
from pprint import pprint
import urllib3
ENV = "dev"
SENDGRID_API_KEY = "SENDGRID_API_KEY"
SENDGRID_TEMPLATE_ID = "SENDGRID_TEMPLATE_ID"
TESTER_MAIL_ADDRESS = "[email protected]"
class InvalidEnvironmentException(Exception):
"""dev, prod가 아닌 환경일 때 발생하는 예외"""
def __init__(self):
super().__init__("env must be dev or prod")
class SendGridException(Exception):
"""SendGrid API 호출 시 발생하는 예외"""
def __init__(self, message):
super().__init__("SendGrid API 호출 실패:", message)
class Mailer:
"""
알림을 보내기 위한 클래스
"""
def __init__(self, env="dev"):
if env not in ("local", "dev", "prod"):
raise InvalidEnvironmentException()
# if env in ["local", "dev"]:
# pass
# elif env in ["prod"]:
# pass
self.sendgrid_sender_email_address = "[email protected]"
self.sendgrid_sender_name = "Test Script"
def __str__(self):
"""
java에서 toString()과 같은 역할을 한다.
이거 없으면 <__main__.Configs object at 0x1042820d0> 이렇게 출력됨.
configs.__dict__로도 가능하긴 함.
"""
return json.dumps(self.__dict__)
def send(self, http, messages=None):
"""
이메일을 발송한다.
- `1 <https://docs.sendgrid.com/ui/sending-email/how-to-send-an-email-with-dynamic-templates#send-a-transactional-email>`_
- `2 <https://docs.sendgrid.com/ui/sending-email/adding-dynamic-content-with-handlebars-in-marketing-campaigns>`_
- `3 <https://docs.sendgrid.com/for-developers/sending-email/using-handlebars#basic-iterator>`_
"""
if not messages:
print("메시지가 없습니다.")
return None
print("Email 클라이언트로 메시지를 발송한다.")
mail_sender = {
"email": self.sendgrid_sender_email_address,
"name": self.sendgrid_sender_name
}
sendgrid_request_header = {
"Content-Type": "application/json",
"Authorization": f"Bearer {SENDGRID_API_KEY}",
}
print(messages)
_personalizations = [
{
"to": [
{"email": receiverEmail} for receiverEmail in messages[0]["receiverEmails"]
],
# https://docs.sendgrid.com/api-reference/mail-send/mail-send
"dynamic_template_data": {
"count": len(messages), # for 신규 신청
"requests": messages,
}
},
]
pprint(_personalizations)
sendgrid_request_body = json.dumps(
{
"template_id": messages[0]["templateId"],
"personalizations": _personalizations,
# "content": [
# {
# "type": "text/html",
# "value": "<p>Hello from Twilio SendGrid!</p><p>Sending with the email service trusted by developers and marketers for <strong>time-savings</strong>, <strong>scalability</strong>, and <strong>delivery expertise</strong>.</p><p>%open-track%</p>"
# }
# ],
# "subject": "Your Example Order Confirmation",
"from": mail_sender,
"categories": ["test", "document"],
"mail_settings": {
"bypass_list_management": {"enable": False},
"footer": {"enable": True},
"sandbox_mode": {"enable": False},
},
"tracking_settings": {
"click_tracking": {"enable": True, "enable_text": False},
"open_tracking": {"enable": True, "substitution_tag": "%open-track%"},
"subscription_tracking": {"enable": True},
},
}
)
# 메일 발송
# https://stackoverflow.com/questions/61998724/httpresponse-object-has-no-attribute-json
try:
sendgrid_res: urllib3.HTTPResponse = http.request(
method="POST",
url="https://api.sendgrid.com/v3/mail/send",
headers=sendgrid_request_header,
body=sendgrid_request_body,
)
# print(dir(sendgrid_res))
if sendgrid_res.status != 202:
raise SendGridException("sendgrid_res.status != 202")
except SendGridException as error:
# 에러 발생 시 히스토리 저장
# {'errors': [{'message': "The requestor's IP Address is not whitelisted", 'field': None, 'help': None}]}
print(error)
return None
def main():
sender = Mailer(ENV)
print(f"current_time -> {datetime.now().strftime('%Y-%m-%dT%H:%M:%S %p')}")
http = urllib3.PoolManager()
message1 = {
"exportRequestId": 4,
"messageCode": str(uuid.uuid4()),
"eventDateTime": "2023-09-25T10:42:45.416223034",
"receiverCompanyName": "receiver1 Co.",
"receiverEmails": [TESTER_MAIL_ADDRESS],
"certificateLanguage": "국문",
"vehicleInformationNumber": "a2345678901234567",
"sellerCompanyName": "seller Corp",
"title": "이것은 메일 제목입니다.",
"templateId": SENDGRID_TEMPLATE_ID,
}
message2 = {
"exportRequestId": 4,
"messageCode": str(uuid.uuid4()),
"eventDateTime": "2023-09-25T10:42:45.416223034",
"receiverCompanyName": "receiver1 Co.",
"receiverEmails": [TESTER_MAIL_ADDRESS],
"certificateLanguage": "국문",
"vehicleInformationNumber": "b2345678901234567",
"sellerCompanyName": "seller Corp",
"title": "이것은 메일 제목입니다.",
"templateId": SENDGRID_TEMPLATE_ID,
}
messages = [message1, message2]
sender.send(http, messages=messages)
""" python send_mail.py """
if __name__ == "__main__":
main()