django.send_mail 339 B

12345678
  1. # -*- mode: snippet -*-
  2. # This was cloned from a TextMate bundle for yasnippet.
  3. #name : send_mail
  4. #group: django
  5. #key : send_mail
  6. #condition: (when (boundp 'python-django-project-root) python-django-project-root)
  7. # --
  8. mail.send_mail("${1:Subject}", "${2:Message}", "${3:from@example.com}", ${4:["to@example.com"]}${5:, fail_silently=True})