-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmail.py
32 lines (28 loc) · 932 Bytes
/
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
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText # Added
from email.mime.image import MIMEImage
import os
class Mail:
#def __init__(self, logging):
#self.logging = logging
def sendMail(title, content, to, user = None):
if user != None:
to = user.email
uid = os.getenv("sendmail")
if uid == None:
return
pwd = os.getenv("sendmail-password")
mail_server = 'smtp.gmail.com'
message = "From : " + uid + "To : " + to + "Subject: Trading\r\n" + content
MESSAGE_FORMAT = "From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n%s"
message = MESSAGE_FORMAT % ('', to, title, content)
Mail.sendMailIntern(uid, pwd, to, message, mail_server)
def sendMailIntern(uid, pwd, to, message, mail_server):
server = smtplib.SMTP(mail_server, 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login(uid, pwd)
server.sendmail(uid, to, message)
server.close()