我一直在与django合作,我正在建立联系表格。
我想检索联系表单中的信息,这是我迄今为止能够做到的,但我面临的问题是,填写表单的用户也会收到一封包含该信息和我的电子邮件的电子邮件(其中我不想要。)
我在我的视图中使用了EmailMultiAlternatives功能,并使用电子邮件帐户配置了我的settings.py以及电子邮件所需的额外数据。
表格中的信息是否只能由我(管理员)收到?
以下是我的观点:
form = ContactForm(request.POST)
if form.is_valid():
email = form.cleaned_data['email']
name = form.cleaned_data['name']
message = form.cleaned_data['message']
to = #my email
html_content = "received from [%s] ***message*** %s"%(email,message)
msg = EmailMultiAlternatives('Subject', html_content, 'from@server.com', [to])
msg.attach_alternative(html_content, 'text/html')
msg.send()