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