-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_smtp_email.py
42 lines (32 loc) · 994 Bytes
/
test_smtp_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
#last tested 2020
import smtplib
def send_email(user, pwd, recipient, subject, body):
FROM = user
TO = recipient if isinstance(recipient, list) else [recipient]
SUBJECT = subject
TEXT = body
# Prepare actual message
message = """From: %s\nTo: %s\nSubject: %s\n\n%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
try:
print('Starting SMTP connection')
server = smtplib.SMTP("smtp.server.com", 587)
print('Sending hello')
server.ehlo()
print('Start TLS')
#server.starttls()
print('Login')
server.login(user, pwd)
print('Sending mail..')
server.sendmail(FROM, TO, message)
print('Closing connection')
server.close()
print('successfully sent the mail')
except Exception as er:
print("failed to send mail -" + str(er))
user = ''
pwd = ''
recipient = ''
subject = 'test'
body = 'testing mail'
send_email(user, pwd, recipient, subject, body)