Skip to content

Instantly share code, notes, and snippets.

@MerleLiuKun
Created April 3, 2019 08:16
Show Gist options
  • Save MerleLiuKun/da41a318961550aa7c36fcc0ba1f8517 to your computer and use it in GitHub Desktop.
Save MerleLiuKun/da41a318961550aa7c36fcc0ba1f8517 to your computer and use it in GitHub Desktop.
email sender
filename = './xxx.pdf'
with open(GUIDO, 'rb') as g_f:
guido = MIMEApplication(g_f.read(), _subtype='pdf')
guido.add_header('Content-Disposition', 'attachment', filename=filename)
msg.attach(guido)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment