I have full response of a email send using node module google-api-nodejs-client, which is like
{
"id": "1231212312",
"labelIds": ["UNREAD", "SENT", "INBOX"],
"threadId": "23123123"
}
I need to send an email again to the email address but in the same thread not as a new email.
I checked the documentation but wasn't able to find relevant stuff.
Here is the link to its documentation: https://github.com/google/google-api-nodejs-client/blob/master/apis/gmail/v1.js#L796
Thanks!