Как правильно установить заголовки «In-Reply-To» и «Reference» в Gmail API - PullRequest
2 голосов
/ 04 мая 2019

Я пытаюсь ответить на письмо, полученное с помощью Gmail API. Я попробовал следующий код: он добавляет отправляющее сообщение в цепочку в моем почтовом ящике, но для получателя отправляет как новое сообщение. Как правильно объявить заголовки In-Reply-To и Reference?

def create_message(origin=None, destination=to, subject=None, msg_txt=None, thr_id=None):
    """Create a message for an email.
    Args:
      origin: Email address of the sender.
      destination: Email address of the receiver.
      subject: The subject of the email message.
      msg_txt: The text of the email message.
      thr_id: the threadId of the message to attach
    Returns:
      An object containing a base64url encoded email object.
    """
    message = MIMEText(msg_txt)
    message['to'] = destination
    message['from'] = origin
    message['subject'] = subject
    raw_msg={'raw': (base64.urlsafe_b64encode(message.as_bytes()).decode())}
    raw_msg['threadId'] =thr_id
    raw_msg['Reference'] = '<CANyAw3CWm33sKL80GMKp-b=8JgXz3MVPkvCVbJ_oK4NuGJcb3w@mail.gmail.com>'
    raw_msg['In-Reply-To'] = '<CANyAw3CWm33sKL80GMKp-b=8JgXz3MVPkvCVbJ_oK4NuGJcb3w@mail.gmail.com>'
    raw_msg['Message-ID'] = '<CANyAw3CWm33sKL80GMKp-b=8JgXz3MVPkvCVbJ_oK4NuGJcb3w@mail.gmail.com>'
    return raw_msg

Мой основной метод следующий:

def main():
    """Canned reply responder using the Gmail API.
    Creates a Gmail API service object and responds to a query with a standard response
    whilst giving it a label to ensure only 1 response per thread is sent
    """

    # get credentials first and create gmail service object
    store = file.Storage('token.json')
    creds = store.get()
    if not creds or creds.invalid:
        flow = client.flow_from_clientsecrets('gmailApiCredentials.json', SCOPES)
        creds = tools.run_flow(flow, store)
    gmail_service = build('gmail', 'v1', http=creds.authorize(Http()))

    # receive email messages
    q = 'subject:this is a test message'
    messages = list_messages_matching_query(gmail_service, user_id,
                                            query=q,
                                            maxResults=1)
    if not messages:
        print("No messages to show")
    else:
        pprint.pprint('Messages to show: {}'.format(messages))

    # get thread of first document - so you can label the thread itself if need be
    thread_id = messages[0]['threadId']
    thread = get_thread(gmail_service, user_id, thread_id)

    msg_id = messages[0]['id']
    message = get_message(gmail_service, user_id, msg_id)

    subject ='Re:this is a test message'
    msg = create_message(destination=to, origin=to,
                         subject=subject,
                         msg_txt='Hai', thr_id=thread_id)
    send_message(gmail_service,"me", msg)
    print("Message Sent")

Ответы [ 2 ]

2 голосов
/ 10 мая 2019

Метод create_message следует изменить следующим образом, чтобы установить заголовки «Reference» и «In-Reply-To».

def create_message(origin=None, destination=TO, subject=None, msg_txt=None, thr_id=None, msgID=None):
    """Create a message for an email.
    Args:
      origin: Email address of the sender.
      destination: Email address of the receiver.
      subject: The subject of the email message.
      msg_txt: The text of the email message.
      thr_id: the threadId of the message to attach
    Returns:
      An object containing a base64url encoded email object.
    """
    message = MIMEText(msg_txt)
    message['to'] = destination
    message['from'] = origin
    message['subject'] = subject
    message.add_header('Reference', msgID)
    message.add_header('In-Reply-To', msgID)
    raw_msg = {'raw': (base64.urlsafe_b64encode(message.as_bytes()).decode())}
    raw_msg['threadId'] = thr_id
    return raw_msg

Правильный msgID можно получить с помощью следующего метода:

ef get_mime_message(service, user_id, msg_id):
    try:
        message = service.users().messages().get(userId=user_id, id=msg_id,
                                                 format='raw').execute()

        msg_str = base64.urlsafe_b64decode(message['raw']).decode()

        mime_msg = email.message_from_string(msg_str)

        return mime_msg
    except errors.HttpError as error:
        print('An error occurred: %s' % error

msgID можно получить следующим образом:

ms = get_mime_message(gmail_service, USER_ID, msg_id)
    msgID = format(ms['Message-ID'])

Не путайте msg_id сMsgID.msg_id специфичен для gmail, а msgID глобален.Этот msgID следует использовать в заголовках «Reference» и «In-Reply-To».

1 голос
/ 09 мая 2019

Я тоже столкнулся с этой проблемой некоторое время назад и threadId к своим заголовкам «верхнего уровня», например:

return {'raw': base64.urlsafe_b64encode(message.as_string()), 'threadId': thread_id}

казалось, добился цели!

...