Trigger when a new email is received in Outlook.

Input

PropertyTypeRequiredDescription
subjectSHORT_TEXTNoSearch for a specific value in the Subject field
toSHORT_TEXTNoSearch for a specific value in the To field
fromAddressSHORT_TEXTNoSearch for a specific value in the From field

Sample Output

{
  "html": "My email body",
  "text": "My email body",
  "textAsHtml": "<p>My email body</p>",
  "subject": "Email Subject",
  "date": "2023-06-18T11:30:09.000Z",
  "to": {
    "value": [
      {
        "address": "email@address.com",
        "name": "Name"
      }
    ]
  },
  "from": {
    "value": [
      {
        "address": "email@address.com",
        "name": "Name"
      }
    ]
  },
  "cc": {
    "value": [
      {
        "address": "email@address.com",
        "name": "Name"
      }
    ]
  },
  "messageId": "<CxE49ifJT5YZN9OE2O6j6Ef+BYgkKWq7X-deg483GkM1ui1xj3g@mail.gmail.com>"
}