Skip to content

Instantly share code, notes, and snippets.

@devStepsize
Last active April 12, 2016 18:05
Show Gist options
  • Save devStepsize/505302553414c0a4fcd7eabd8759614f to your computer and use it in GitHub Desktop.
Save devStepsize/505302553414c0a4fcd7eabd8759614f to your computer and use it in GitHub Desktop.
2-liner to send emails using Django
from django.core.mail import send_mail
send_mail('Subject here', 'Here is the message.', '[email protected]',
['[email protected]'], fail_silently=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment