Send Mail

Sends an email message to one or more recipients.

This activity sends an email message to one or more recipients using the Microsoft Graph Create message and Send mail APIs

Input

  • 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.

Email

  • Body : String Argument Specifies the email's message body. If the Is Body HTML property is set to true, then the body needs to be specified in HTML format.

  • Subject: String Argument Specifies the subject of the email message.

Options

  • From: String Argument Specifies the email address from which the email message is sent.

  • Subject: String Argument Specifies the subject of the email message.

  • Importance: Specifies the importance or priority of the mail message to be sent . The available options are: Low, Normal, High. By default the value is Normal.

  • Is Body HTML:

    • True - The activity will specify that the message body is in Html format.

    • False - The activity will specify that the message body is in Text format.

  • Is Draft:

    • True - The activity will save the message as draft and not sent.

    • False - The activity will send the message and it wont be saved.

  • Reply to: String Argument Specifies mail addresses to be used when replying.Each of the mail addresses should be separated by a semicolon."

Recipients

When specifying multiple recipient mail addresses, each of the mail addresses should be separated by a semicolon. For example: "user1@xyz.com;user2@xyz.com"

Attachments

Last updated