You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
362 B
Python
18 lines
362 B
Python
6 years ago
|
import smtplib
|
||
|
import sys
|
||
|
from email import mime
|
||
|
|
||
|
from email.mime.image import MIMEImage
|
||
|
from email.mime.multipart import MIMEMultipart
|
||
|
|
||
|
msg = mime.multipart.MIMEMultipart()
|
||
|
msg['Subject'] = 'Test email'
|
||
|
msg['From'] = sys.argv[1]
|
||
|
msg['To'] = sys.argv[2]
|
||
|
msg.preamble = 'Test email'
|
||
|
|
||
|
s = smtplib.SMTP('localhost')
|
||
|
s.set_debuglevel(1)
|
||
|
s.send_message(msg)
|
||
|
s.quit()
|