Skip to content

Instantly share code, notes, and snippets.

View Austin-540's full-sized avatar

Austin Austin-540

  • New Zealand
  • 20:50 (UTC +12:00)
View GitHub Profile
@NlsNi
NlsNi / mail.py
Created February 15, 2017 01:30
send rich text email with python
import smtplib
from email.mime.text import MIMEText
from email.header import Header
def mail(htm):
sender = '[email protected]'
receiver = '[email protected]'
subject = 'test'
smtpserver = 'smtp.163.com'
username = '[email protected]'