Skip to content

Instantly share code, notes, and snippets.

@maracuja
Created January 23, 2017 16:48
Show Gist options
  • Save maracuja/62475c758984663f9e8d98980ef71559 to your computer and use it in GitHub Desktop.
Save maracuja/62475c758984663f9e8d98980ef71559 to your computer and use it in GitHub Desktop.
Emailling attachments in django
from django.core.mail import EmailMessage
email = EmailMessage(
'Hello',
'Body goes here',
'my.name@address.co.uk',
['your.name@address.co.uk'],
)
email.attach_file('/home/ijiro/image.png')
email.attach_file('/home/ijiro/image1.png')
email.attach_file('/home/ijiro/image2.png')
email.send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment