How to get the subject of a message using Gmail API using python?
message = MIMEText(message_text, 'html') <-- add the 'html' as the second parameter of the MIMEText object constructor.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With