mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
31 lines
793 B
TypeScript
31 lines
793 B
TypeScript
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
|
|
import type { IEmail } from '@utils/sendAndWait/interfaces';
|
|
|
|
import { googleApiRequest } from '../../GenericFunctions';
|
|
|
|
/**
|
|
* Adds inReplyTo and reference headers to the email if threadId is provided.
|
|
*/
|
|
export async function addThreadHeadersToEmail(
|
|
this: IExecuteFunctions,
|
|
email: IEmail,
|
|
threadId: string,
|
|
): Promise<void> {
|
|
const thread = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/gmail/v1/users/me/threads/${threadId}`,
|
|
{},
|
|
{ format: 'metadata', metadataHeaders: ['Message-ID'] },
|
|
);
|
|
|
|
if (thread?.messages) {
|
|
const lastMessage = thread.messages.length - 1;
|
|
const messageId: string = thread.messages[lastMessage].payload.headers[0].value;
|
|
|
|
email.inReplyTo = messageId;
|
|
email.reference = messageId;
|
|
}
|
|
}
|