我寫了一個封裝發送電子郵件在Python中;它使發送電子郵件超級簡單:https://github.com/krystofl/krystof-utils/blob/master/python/krystof_email_wrapper.py
使用它,像這樣:
emailer = Krystof_email_wrapper()
email_body = 'Hello, <br /><br />' \
'This is the body of the email.'
emailer.create_email('[email protected]', 'Sender Name',
['[email protected]'],
email_body,
'Email subject!',
attachments = ['filename.txt'])
cred = { 'email': '[email protected]', 'password': 'VERYSECURE' }
emailer.send_email(login_dict = cred, force_send = True)
您也可以看看源代碼,找到它是如何工作的。 相關位:
import email
import smtplib # sending of the emails
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
self.msg = MIMEMultipart()
self.msg.preamble = "This is a multi-part message in MIME format."
# set the sender
author = email.utils.formataddr((from_name, from_email))
self.msg['From'] = author
# set recipients (from list of email address strings)
self.msg['To' ] = ', '.join(to_emails)
self.msg['Cc' ] = ', '.join(cc_emails)
self.msg['Bcc'] = ', '.join(bcc_emails)
# set the subject
self.msg['Subject'] = subject
# set the body
msg_text = MIMEText(body.encode('utf-8'), 'html', _charset='utf-8')
self.msg.attach(msg_text)
# send the email
session = smtplib.SMTP('smtp.gmail.com', 587)
session.ehlo()
session.starttls()
session.login(login_dict['email'], login_dict['password'])
session.send_message(self.msg)
session.quit()