This commit is contained in:
umanamente 2025-03-05 23:30:41 +00:00 committed by GitHub
commit d65c2c5942
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -435,6 +435,9 @@ export class EmailReadImapV1 implements INodeType {
textHtml: await getText(parts, message, 'html'), textHtml: await getText(parts, message, 'html'),
textPlain: await getText(parts, message, 'plain'), textPlain: await getText(parts, message, 'plain'),
metadata: {} as IDataObject, metadata: {} as IDataObject,
attributes: {
uid: message.attributes.uid,
} as IDataObject,
}, },
}; };

View file

@ -149,6 +149,9 @@ export async function getNewEmails(
textHtml: await getText(parts, message, 'html'), textHtml: await getText(parts, message, 'html'),
textPlain: await getText(parts, message, 'plain'), textPlain: await getText(parts, message, 'plain'),
metadata: {} as IDataObject, metadata: {} as IDataObject,
attributes: {
uid: message.attributes.uid,
} as IDataObject,
}, },
}; };