Skip to content Skip to sidebar Skip to footer

How To Get Subject Of Email From Gmail Using Google Api Using Python?

How to get the subject of a message using Gmail API using python?

Solution 1:

Users.messages: list returns a list of messages. Each message is a Users.messages resource

Pay load header contains subject

"payload": {
    "partId": string,
    "mimeType": string,
    "filename": string,
    "headers": [
      {
        "name": string,
        "value": string
      }
    ],

payload.headers[] list List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as To, From, and Subject.

There is python code on the google developer site which will help you get started python quickstart

Post a Comment for "How To Get Subject Of Email From Gmail Using Google Api Using Python?"