-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhtml_format_email.py
41 lines (35 loc) · 941 Bytes
/
html_format_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
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import smtplib
host = "smtp.gmail.com"
port = 587
username = "[email protected]"
password = "Password"
from_email = username
to_list = ["[email protected]"]
email_conn = smtplib.SMTP(host, port)
email_conn.ehlo()
email_conn.starttls()
email_conn.login(username, password)
the_msg = MIMEMultipart("Alternative")
the_msg['Subject'] = "Hello There"
the_msg['From'] = username
#the_msg['To'] = to_list
plain_text = "Testing the message"
html_text = """\
<html>
<head></head>
<body>
<p>Hey!</br>
Testing the email <b>message</b>. Made By <a href = 'http://joincfe.com'>Team CFE</a>
</p>
</body>
</html>
"""
part_1 = MIMEText(plain_text, 'plain')
part_2 = MIMEText(html_text,"html")
the_msg.attach(part_1)
the_msg.attach(part_2)
#print(the_msg.as_string())
email_conn.sendmail(from_email, to_list, the_msg.as_string())
email_conn.quit()