【问题标题】:Can't seem to send an email through Google API (Python)似乎无法通过 Google API (Python) 发送电子邮件
【发布时间】:2015-11-13 23:29:19
【问题描述】:

我浏览了官方文档,但我似乎无法通过 Google API 发送电子邮件:

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

SCOPES = 'https://www.googleapis.com/auth/gmail.readonly'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Gmail API 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-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 compatability with Python 2.6
            credentials = tools.run(flow, store)
        print 'Storing credentials to ' + credential_path
    return credentials


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 base64url encoded email object.
  """
  message = MIMEText(message_text)
  message['to'] = 'ENTER RECIPIENTS EMAIL ADDRESS HERE'
  message['from'] = 'ENTTER YOUR EMAIL ADDRESS HERE'
  message['subject'] = 'ENTER SUBJECT'
  return {'raw': base64.urlsafe_b64encode(message.as_string())}


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

我没有得到任何错误或任何东西。从看python,似乎它已经被执行了。但是当我检查测试电子邮件的帐户时,没有一个。有谁知道我哪里出错了?

【问题讨论】:

  • 为什么不使用requests?它比httplib2 更健壮和易于使用?
  • 请求可以工作。只有在他们使用 httplib2 的官方文档中:developers.google.com/gmail/api/quickstart/python 作为一个完整的菜鸟,我想我会坚持文档所说的:P
  • 好的。这只是httplib2 看起来很痛苦。
  • httplib2 实际上并没有被此代码使用,这是因为没有调用 get_credentials()CreateMessage()SendMessage() 函数的“主”代码。除非实际调用其中一个或多个函数,否则什么都不会发生。
  • 嘿,谢谢你的mhawke,你能提供一个例子来说明我如何调用“CreateMessage()”吗?我已经定义了。

标签: python email gmail-api


【解决方案1】:

正如 cmets 中所指出的,您不会调用您定义的任何函数。比如

CreateMessage("youremail@gmail.com","someone@gmail.com","Testing","Hello World")

我也可能会替换

message['to'] = 'ENTER RECIPIENTS EMAIL ADDRESS HERE'
message['from'] = 'ENTTER YOUR EMAIL ADDRESS HERE'
message['subject'] = 'ENTER SUBJECT'

message['to'] = to
message['from'] = sender
message['subject'] = subject

否则这些参数不会被使用...

你也可以定义一个'main'

def main():
    message = CreateMessage("youremail@gmail.com","someone@gmail.com","Testing","Hello World")
    # Do something with the message
if __name__ == "__main__":
    main()

【讨论】:

  • 您好,我尝试使用 CreateMessage 调用该函数,但出现以下错误: NameError: global name 'MIMEText' is not defined。这是我缺少的模块还是我需要定义一些东西??
  • MIMEText 来自电子邮件库,因此:需要将“from email.mime.text import MIMEText”添加到导入语句中
猜你喜欢
  • 2021-04-18
  • 1970-01-01
  • 1970-01-01
  • 2016-03-13
  • 2019-02-04
  • 2015-08-29
  • 1970-01-01
  • 2013-05-19
  • 2011-03-30
相关资源
最近更新 更多