【问题标题】:Python Email, [Errno 10061] No connection could be made because the target machine actively refused itPython 电子邮件,[Errno 10061] 无法建立连接,因为目标机器主动拒绝它
【发布时间】:2016-10-23 22:09:46
【问题描述】:

我想用python发送邮件,下面是我的代码,但最后我收到错误10061,希望有人能帮助我,谢谢!

import smtplib
fromaddr = 'XXX@XX.com'
toaddrs  = 'XXX@XX.com    '
msg = 'Why,Oh why!'
username = 'XXXXXX'
password = 'XXXXXX'
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.starttls()
server.login(username,password)
server.sendmail(fromaddr, toaddrs, msg)
server.quit()

error msg:socket.error: [Errno 10061] 由于目标机器主动拒绝,无法建立连接

【问题讨论】:

标签: python smtp gmail


【解决方案1】:

正如 Cid-EL 所说,You have to enable less secure apps in GMAIL settings

但是,打开该特定选项并不安全。

Gmail 提供 API 来执行邮件操作。 GMAIL API 支持多种语言。

对于 Python API:Python with Gmail

对于 Java API:Java with Gmail

稍加努力,但您可以获得安全的连接!

第 1 步:开启 GMAIL API

第 2 步:安装 Google 客户端库

pip install --upgrade google-api-python-client

第 3 步:使用 GMAIL API 发送邮件的代码示例

from __future__ import print_function
import httplib2
import os

from apiclient import discovery
import oauth2client
from oauth2client import client
from oauth2client import tools

try:
   import argparse
   flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
except ImportError:
   flags = None

# If modifying these scopes, delete your previously saved credentials 
# at ~/.credentials/gmail-python-quickstart.json
SCOPES = "https://mail.google.com/"
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Gmail API Python Quickstart'


def get_credentials():
  """Gets valid user credentials from storage.

  If nothing has been stored, or if the stored credentials are invalid,
  the OAuth2 flow is completed to obtain the new credentials.

  Returns:
    Credentials, the obtained credential.
  """
   home_dir = os.path.expanduser('~')
   credential_dir = os.path.join(home_dir, '.credentials')
   if not os.path.exists(credential_dir):
      os.makedirs(credential_dir)
   credential_path = os.path.join(credential_dir,
                                'gmail-python-quickstart.json')

   store = oauth2client.file.Storage(credential_path)
   credentials = store.get()
   if not credentials or credentials.invalid:
      flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
      flow.user_agent = APPLICATION_NAME
      if flags:
         credentials = tools.run_flow(flow, store, flags)
      else: # Needed only for compatibility with Python 2.6
         credentials = tools.run(flow, store)
      print('Storing credentials to ' + credential_path)
   return credentials

# create a message
def CreateMessage(sender, to, subject, message_text):
  """Create a message for an email.

  Args:
    sender: Email address of the sender.
    to: Email address of the receiver.
    subject: The subject of the email message.
    message_text: The text of the email message.

  Returns:
    An object containing a base64 encoded email object.
  """
    message = MIMEText(message_text)
    message['to'] = to
    message['from'] = sender
    message['subject'] = subject
    return {'raw': base64.b64encode(message.as_string())}

#send message 
def SendMessage(service, user_id, message):
    """Send an email message.

    Args:
     service: Authorized Gmail API service instance.
     user_id: User's email address. The special value "me"
     can be used to indicate the authenticated user.
     message: Message to be sent.

    Returns:
     Sent Message.
    """
    try:
        message = (service.users().messages().send(userId=user_id, body=message).execute())
        #print 'Message Id: %s' % message['id']
        return message
    except errors.HttpError, error:
        print ('An error occurred: %s' % error)


def main():
    """Shows basic usage of the Gmail API.
       Send a mail using gmail API
    """
    credentials = get_credentials()
    http = credentials.authorize(httplib2.Http())
    service = discovery.build('gmail', 'v1', http=http)

    msg_body = "test message"

    message = CreateMessage("xxxxx@gmail.com", "yyy@gmail.com", "Status report of opened tickets", msg_body)
   
    SendMessage(service, "me", message)

if __name__ == '__main__':
    main()

【讨论】:

  • 您好,GMAIL API 验证成功,下一步是什么?如何使用此 API 发送邮件,抱歉这个愚蠢的问题
  • 没关系,你在谷歌开发者控制台中创建了账号吗?
  • 是的,我有,只是想知道步骤是什么?请给我一些关于如何调用 GMAIL API 或如何使用 API 的代码
  • @Emon 我已经更新了答案,当你第一次运行时,它会打开一个浏览器,你必须在那里授予权限。如果它不起作用,请告诉我
  • 对不起我的愚蠢。但是这一行除了errors.HttpError, error: print ('An error occurred: %s' % error) 是错误的,如何定义错误?
【解决方案2】:

据我所知,Gmail 和其他公司有安全措施来防止来自未知来源的电子邮件,但this link 可以关闭这种安全措施。

您可以在此处修改帐户,使其接受电子邮件。

我使用此代码发送电子邮件:

import smtplib

from email.mime.multipart import MIMEMultipart

from email.mime.text import MIMEText

from_address = 'johndoe@gmail.com'

to_address = 'johndoe@gmail.com'

message = MIMEMultipart('Foobar')

epos_liggaam['Subject'] = 'Foobar'

message['From'] = from_address

message['To'] = to_address

content = MIMEText('Some message content', 'plain')

message.attach(content)

mail = smtplib.SMTP('smtp.gmail.com', 587)

mail.ehlo()

mail.starttls()

mail.login(from_address, 'password')

mail.sendmail(from_address,to_address, message.as_string())

mail.close()

【讨论】:

  • 请注意我的母语不是英语,所以有些变量的名字可能很奇怪......谢谢
  • 如 Cid-EL 所述,您必须启用不太安全的应用程序。由于您使用的是gmail。您也可以使用 GMAIL API 的
  • 感谢您的回答,我使用第一个不太安全的应用程序并使用您的代码,但仍然收到相同的错误消息。:(
  • 您是否转到链接并选择打开,然后保存更改并尝试过?因为我有你前段时间遇到的确切错误,并且该代码运行得很好。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2021-11-10
  • 2012-10-11
  • 1970-01-01
  • 1970-01-01
  • 2017-06-01
  • 1970-01-01
相关资源
最近更新 更多