mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(Email Trigger (IMAP) Node): Add Email UID also to email format "resolved" (#15539)
This commit is contained in:
@@ -117,6 +117,10 @@ export async function getNewEmails(
|
|||||||
dataPropertyAttachmentsPrefixName,
|
dataPropertyAttachmentsPrefixName,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
(parsedEmail.json as IDataObject).attributes = {
|
||||||
|
uid: message.attributes.uid,
|
||||||
|
};
|
||||||
|
|
||||||
newEmails.push(parsedEmail);
|
newEmails.push(parsedEmail);
|
||||||
}
|
}
|
||||||
} else if (format === 'simple') {
|
} else if (format === 'simple') {
|
||||||
|
|||||||
Reference in New Issue
Block a user