-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsmtp.py
38 lines (28 loc) · 1001 Bytes
/
smtp.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
#!/usr/bin/env python3
#-*- coding:utf-8 -*-
import smtplib
from email.mime.text import MIMEText
import config
class EmailBySmtp (object):
def __init__(self, c):
self.smtp_server = config.smtp["server"]
self.login = config.smtp["login"]
self.password = config.smtp["password"]
self.From = config.smtp["From"]
self.to = config.smtp["to"]
self.subject = c["subject"]
self.message = MIMEText(c["message"], 'html')
self.message['From'] = self.From
self.message['To'] = self.to
self.message['Subject'] = self.subject
self.server = smtplib.SMTP(self.smtp_server)
self.server.starttls()
self.server.login(self.login, self.password)
def send(self ):
self.server.sendmail(self.From, [self.to], self.message.as_string())
self.server.quit()
if __name__ == '__main__':
EmailBySmtp({
'subject': 'Error 303',
'message': '<h2>Error URL</h2>',
}).send()