This repository was archived by the owner on Feb 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail_sender_gmail.py
56 lines (49 loc) · 1.54 KB
/
email_sender_gmail.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.MIMEImage import MIMEImage
def send(fromaddr, toaddrs, subject='no subject', text='', html=None, attachment=None):
msg = MIMEMultipart('mixed')
msg.set_charset("utf-8")
msg['Subject'] = subject
msg['From'] = fromaddr
msg['To'] = toaddrs
if attachment is not None:
fp = open(attachment, 'rb')
part3 = MIMEImage(fp.read())
fp.close()
msg.attach(part3)
else:
pass
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')
msg.attach(part1)
msg.attach(part2)
sender_username = 'scatterpeas'
sender_password = 'peapassword'
server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(sender_username, sender_password)
server.sendmail(fromaddr, toaddrs, msg.as_string())
server.quit()
if __name__ == '__main__':
fromaddr = '[email protected]'
toaddrs = '[email protected]'
subject = 'Greeting'
text = "This is text \n Hi!\nHow are you?\nI'm a scattered pea.\nhttps://www.youtube.com/watch?v=jHm0jmg-sbc"
html = """
<html>
<head></head>
<body>
<p>Hi!<br>
This is HTML<br>
How are you?<br>
I'm a scattered pea. <a href="https://www.youtube.com/watch?v=jHm0jmg-sbc">Watch this</a>
</p>
</body>
</html>
"""
# attachment = 'nmr.jpg'
send(fromaddr, toaddrs, subject, text, html)