2

我有一个页面,人们可以在其中提交电子邮件。它有效,但我收到所有来自它的电子邮件,说它们来自我自己。

这是视图:

def signup(request):
  if request.method == 'POST': # If the form has been submitted...
    form = SignUpForm(request.POST) # A form bound to the POST data
    if form.is_valid(): # All validation rules pass
        subject = form.cleaned_data['subject']
        message = form.cleaned_data['message']
        sender = form.cleaned_data['sender']
        recipients = ['illuminatirebellion@gmail.com']

        from django.core.mail import send_mail
        send_mail(subject, message, sender, recipients)
        return HttpResponseRedirect('/thanks/') # Redirect after POST
else:
     form = SignUpForm() # An unbound form
return render_to_response('signup.html', {'form': form,},context_instance=RequestContext(request))

和设置:

EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'illuminatirebellion@gmail.com'
EMAIL_HOST_PASSWORD = 'mypassword'
EMAIL_PORT = 587
MANAGERS = ADMINS
4

1 回答 1

1

您的用法send_mail()似乎是正确的。

假设 Gmail 是您的 SMTP 供应商,那么 Gmail 似乎不支持使用自定义From:电子邮件地址。

相关的:

于 2012-04-14T17:56:52.697 回答