Set Mail Categories
Adds categories to an email message
This activity adds categories to an email message using the Microsoft Graph Update message API.
This activity can only be used after Get Mail Activity
Input
Connection Id:
GraphServiceClient Variable
Required
Specifies the office 365 connection id.Account:
String Argument
Specifies an email address with which to interact. This property can include any shared mailbox to which the current user has access rights. If the property field is left empty, the current user's account is used. This is an optional property.Message:
Object Argument
Required
Specifies the outlook message as Office365Message that is to be added with the specified categories. We can also specify the output variable of the Get Mail activity (which is an array) directly as input by providing its element. For example : Messages[1].Categories:
String Argument
Required
Specifies the categories to add to this message. If left blank, it clears all the categories. Each of the categories should be separated by a semicolon. For example : "Category1;Category2"
Last updated