2011-03-05から1日間の記事一覧

Python, Django Tips: Sending e-mail

Django documentaion: Sending e-mailにあるように from django.core.mail import send_mailsend_mail('Subject here', 'Here is the message.', 'from@example.com', ['to@example.com'], fail_silently=False) という感じでgmailからメールを送ろうと四苦…