Example 1
All emails
with transfer attchs set to inactive
Returns all emails (with or without attachments). Emails with some attached attachments will be returned without this attachments (output schema column Attachment
will be always null
).
Configuration
Property | Value |
---|---|
Emails | All untreated emails |
Transfer attachments | false |
Returned data
[
{
"ID": "6ce41109e@intelstudios.onmicrosoft.com-730b4889-@AM7PR066.eurprd07.prod.outlook.com",
"Subject": "Without attachments",
"From": [
{
"Name": "Microsoft Outlook",
"Address": "MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@intelstudios.onmicrosoft.com"
}
],
"To": [
{
"Name": "",
"Address": "test@intelstudios.com"
}
],
"DateSent": "2022-08-26T09:27:16Z",
"DateReceived": "2022-08-26T09:27:15Z",
"BodyText": "some content",
"Attachment": null
},
{
"ID": "6ce411649e@intelstudios.onmicrosoft.com-730b4889-@AM7PR066.eurprd07.prod.outlook.com",
"Subject": "With more attachments (inline and also attached)",
"From": [
{
"Name": "Microsoft Outlook",
"Address": "MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@intelstudios.onmicrosoft.com"
}
],
"To": [
{
"Name": "",
"Address": "test@intelstudios.com"
}
],
"DateSent": "2022-08-26T09:27:16Z",
"DateReceived": "2022-08-26T09:27:15Z",
"BodyText": "some content",
"Attachment": null
},
{
"ID": "6ce411649e@intelstudios.onmicrosoft.com-730b4889-@AM7PR066.eurprd07.prod.outlook.com",
"Subject": "With only one attached attachment",
"From": [
{
"Name": "Microsoft Outlook",
"Address": "MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@intelstudios.onmicrosoft.com"
}
],
"To": [
{
"Name": "",
"Address": "test@intelstudios.com"
}
],
"DateSent": "2022-08-26T09:27:16Z",
"DateReceived": "2022-08-26T09:27:15Z",
"BodyText": "some content",
"Attachment": null
},
{
"ID": "6ce411649e@intelstudios.onmicrosoft.com-730b4889-@AM7PR066.eurprd07.prod.outlook.com",
"Subject": "With only one inline attachment",
"From": [
{
"Name": "Microsoft Outlook",
"Address": "MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@intelstudios.onmicrosoft.com"
}
],
"To": [
{
"Name": "",
"Address": "test@intelstudios.com"
}
],
"DateSent": "2022-08-26T09:27:16Z",
"DateReceived": "2022-08-26T09:27:15Z",
"BodyText": "some content",
"Attachment": null
}
]