fix(Email Trigger (IMAP) Node): Add Email UID also to email format "resolved" (#15539)

This commit is contained in:
Alexandero89
2025-06-09 20:08:04 +02:00
committed by GitHub
parent b07c52e577
commit 33f8fab791

View File

@@ -117,6 +117,10 @@ export async function getNewEmails(
dataPropertyAttachmentsPrefixName,
);
(parsedEmail.json as IDataObject).attributes = {
uid: message.attributes.uid,
};
newEmails.push(parsedEmail);
}
} else if (format === 'simple') {