本文整理匯總了Python中models.Submission.email_address方法的典型用法代碼示例。如果您正苦於以下問題:Python Submission.email_address方法的具體用法?Python Submission.email_address怎麽用?Python Submission.email_address使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Submission
的用法示例。
在下文中一共展示了Submission.email_address方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: form_valid
# 需要導入模塊: from models import Submission [as 別名]
# 或者: from models.Submission import email_address [as 別名]
def form_valid(self, form):
# header = "{email} supplied a form!".format(
# email=form.cleaned_data.get('email_address'))
# message = "\n\nType: {0}".format(form.cleaned_data.get('ticket_type').encode('utf-8'))
# message += "\n\nCourt: {0}".format(form.cleaned_data.get('group_court'))
# message += "\n\ncontact_method: {0}".format(form.cleaned_data.get('contact_method'))
# send_mail(
# subject=header,
# message=message,
# from_email='[email protected]',
# recipient_list=['[email protected]'],
# )
c = Submission()
c.software_download = form.cleaned_data.get('software_download')
c.email_address = form.cleaned_data.get('email_address')
c.submitter_name = form.cleaned_data.get('submitter_name')
c.institution = form.cleaned_data.get('institution')
c.save()
return super(ContactFormView, self).form_valid(form)