-
Notifications
You must be signed in to change notification settings - Fork 0
/
send_email.py
73 lines (51 loc) · 2.02 KB
/
send_email.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
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
class EmailController:
def send_pop_as_email(transaction_reference):
"""Send generated pdf as email
Args:
transaction_reference: transaction_reference
"""
# body of the email
body = '''
Good day,
Please find attached a copy of your proof of payment
Kind regards
Nigel Zulu
'''
# ============================================
# sender email address eg [email protected]
# these will be used to authenticate to gmail
sender = '[email protected]'
password = '*******'
# enter the reciever email address eg [email protected]
receiver = '[email protected]'
message = MIMEMultipart()
message['From'] = sender
message['To'] = receiver
message['Subject'] = 'ZB BANK PROOF OF PAYMENT'
message.attach(MIMEText(body, 'plain'))
# select the file you want to send
pdfname = 'generated-pdf/'+transaction_reference+'.pdf'
# rewrite the name of the pdf
pdffilename = transaction_reference+'.pdf'
# prepare payload
binary_pdf = open(pdfname, 'rb')
payload = MIMEBase('application', 'pdf', Name=pdfname)
payload.set_payload((binary_pdf).read())
encoders.encode_base64(payload)
payload.add_header('Content-Disposition', 'attachment', filename=pdffilename)
message.attach(payload)
#use gmail with port
session = smtplib.SMTP('smtp.gmail.com', 587)
#enable security
session.starttls()
#login with mail_id and password
session.login(sender, password)
text = message.as_string()
session.sendmail(sender, receiver, text)
session.quit()
print('Mail Sent')