Microsoft Outlook 365
Reference
Microsoft Outlook 365 is a comprehensive email and productivity platform that integrates email, calendar, contacts, and tasks to streamline communication and organization.
Categories: [communication, calendars-and-scheduling]
Version: 1
Connections
Version: 1
OAuth2 Authorization Code
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Client Id | STRING | TEXT | |
Client Secret | STRING | TEXT | |
Tenant Id | STRING | TEXT |
Triggers
New Email
Triggers when new mail is received.
Type: POLLING
Properties
Name | Type | Control Type | Description |
---|---|---|---|
null |
Output
Type: ARRAY
Properties
Type | Control Type |
---|---|
{STRING(id), STRING(subject), STRING(bodyPreview), {STRING(contentType), STRING(content)}(body), {{STRING(name), STRING(address)}(emailAddress)}(from)} | OBJECT_BUILDER |
Actions
Get Mail
Get a specific message
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Message id | STRING | SELECT | Id of the message |
Output
Type: OBJECT
Properties
Type | Control Type |
---|---|
STRING | TEXT |
STRING | TEXT |
STRING | TEXT |
{STRING(contentType), STRING(content)} | OBJECT_BUILDER |
{{STRING(name), STRING(address)}(emailAddress)} | OBJECT_BUILDER |
Search Email
Get the messages in the signed-in user’s mailbox
Properties
Name | Type | Control Type | Description |
---|---|---|---|
From | STRING | TEXT | The address sending the mail |
To | STRING | TEXT | The address receiving the new mail |
Subject | STRING | TEXT | Words in the subject line |
Category | STRING | SELECT | Messages in a certain category |
Output
Type: ARRAY
Properties
Type | Control Type |
---|---|
{STRING(id), STRING(subject), STRING(bodyPreview), {STRING(contentType), STRING(content)}(body), {{STRING(name), STRING(address)}(emailAddress)}(from)} | OBJECT_BUILDER |
Send Email
Send the message.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
From | {{{STRING(address), STRING(name)}(emailAddress)}(recipient)} | OBJECT_BUILDER | The owner of the mailbox from which the message is sent. In most cases, this value is the same as the sender property, except for sharing or delegation scenarios. The value must correspond to the actual mailbox used. |
To recipients | [{{STRING(address), STRING(name)}(emailAddress)}($recipient)] | ARRAY_BUILDER | The To: recipients for the message. |
Subject | STRING | TEXT | The subject of the message. |
Bcc recipients | [{{STRING(address), STRING(name)}(emailAddress)}($recipient)] | ARRAY_BUILDER | The Bcc recipients for the message. |
Cc recipients | [{{STRING(address), STRING(name)}(emailAddress)}($recipient)] | ARRAY_BUILDER | The Cc recipients for the message. |
Reply to | [{{STRING(address), STRING(name)}(emailAddress)}($recipient)] | ARRAY_BUILDER | The email addresses to use when replying. |
Body | {STRING(content), STRING(contentType)} | OBJECT_BUILDER | The body of the message. It can be in HTML or text format. |