Django- [Errno 111]使用smtp时拒绝连接

时间:2022-04-11 12:22:26

I'm working on a Django app that has a feature for sending emails to users. In a test case, I have a contact form that submits form data as a part of an email using smtp through gmail. I disabled captchas as I was advised in this video playlist that I've been following for tutorials but when I click the submit button I get the [Errno 111] for some reason. After seeing this and another SO post, I learned that I needed to be running the site on a live server (instead of just localhost) in order to be able to send an email. However, when I tried this on a server, I got the same error as before. I'm pretty sure I followed all of the correct steps, so what could be the problem?

我正在开发一个Django应用程序,它具有向用户发送电子邮件的功能。在测试用例中,我有一个联系表单,使用smtp通过gmail将表单数据作为电子邮件的一部分提交。我禁用了验证码,因为我在这个视频播放列表中被告知我一直在关注教程,但是当我点击提交按钮时,由于某种原因我得到了[Errno 111]。在看到这个和另一个SO帖子之后,我了解到我需要在实时服务器(而不仅仅是localhost)上运行该站点才能发送电子邮件。但是,当我在服务器上尝试这个时,我得到了和以前一样的错误。我很确定我遵循了所有正确的步骤,那么可能是什么问题呢?

Here is the error traceback:

这是错误追溯:

Django Version: 1.8.6
Python Version: 2.7.6
Installed Applications:
('django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'artist_tracker')
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware',
 'django.middleware.security.SecurityMiddleware')


Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
  132.                     response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/var/www/students/ceyron/bandsync/src/bandsync-repo/artist_tracker/views.py" in contact
  58.       send_mail(subject, contact_message, from_email, to_email, fail_silently =False)
File "/usr/local/lib/python2.7/dist-packages/django/core/mail/__init__.py" in send_mail
  62.     return mail.send()
File "/usr/local/lib/python2.7/dist-packages/django/core/mail/message.py" in send
  303.         return self.get_connection(fail_silently).send_messages([self])
File "/usr/local/lib/python2.7/dist-packages/django/core/mail/backends/smtp.py" in send_messages
  107.                 sent = self._send(message)
File "/usr/local/lib/python2.7/dist-packages/django/core/mail/backends/smtp.py" in _send
  123.             self.connection.sendmail(from_email, recipients, message.as_bytes(linesep='\r\n'))
File "/usr/lib/python2.7/smtplib.py" in sendmail
  731.             raise SMTPSenderRefused(code, resp, from_addr)

Exception Type: SMTPSenderRefused at /contact/
Exception Value: (530, '5.5.1 Authentication Required. Learn more at\n5.5.1  https://support.google.com/mail/answer/14257 j34sm10137713qkh.39 - gsmtp', u'webmaster@localhost')

contact form from views.py file

来自views.py文件的联系表单

from django.shortcuts import render
from django.conf import settings
from .forms import ContactForm, SignUpForm
# Create your views here.

from django.core.mail import send_mail

def contact(request):
    form = ContactForm(request.POST or None)
    if form.is_valid():
        # for key, value in form.cleaned_data.iteritems():
        #   print key, value
        form_email = form.cleaned_data.get("email")
        form_message = form.cleaned_data.get("message")
        form_full_name = form.cleaned_data.get("full_name")
        # print form.cleaned_data
        subject = "Site contact form"
        from_email = settings.EMAIL_HOST_USER
        to_email = [from_email, 'celijahh@gmail.com']
        contact_message = ''' 
        %s: %s via %s
        '''%(form_full_name, form_message, form_email)
        send_mail(subject, contact_message, from_email, [to_email], fail_silently = True )

    context = {
        "form": form
    }
    return render(request, "forms.html", context)

2 个解决方案

#1


1  

In your code;

在你的代码中;

to_email = [from_email, 'someone@gmail.com'] 

is a list and again you passing to_email argument inside list.

是一个列表,你再次在列表中传递to_email参数。

Change this;

send_mail(subject, contact_message, from_email, [to_email], fail_silently = True )

to

send_mail(subject, contact_message, from_email, to_email, fail_silently = True )

#2


1  

In settings file change this

在设置文件中更改此项

EMAIL_HOSTS = 'smtp.gmail.com'
EMAIL_HOSTS_USER = "bandsyncdjango@gmail.com"

to

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = "bandsyncdjango@gmail.com"

#1


1  

In your code;

在你的代码中;

to_email = [from_email, 'someone@gmail.com'] 

is a list and again you passing to_email argument inside list.

是一个列表,你再次在列表中传递to_email参数。

Change this;

send_mail(subject, contact_message, from_email, [to_email], fail_silently = True )

to

send_mail(subject, contact_message, from_email, to_email, fail_silently = True )

#2


1  

In settings file change this

在设置文件中更改此项

EMAIL_HOSTS = 'smtp.gmail.com'
EMAIL_HOSTS_USER = "bandsyncdjango@gmail.com"

to

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = "bandsyncdjango@gmail.com"