Send Mail
Sends an email message to one or more recipients.
Last updated
Sends an email message to one or more recipients.
Last updated
This activity sends an email message to one or more recipients using the Microsoft Graph Create message and Send mail APIs
Connection Id: GraphServiceClient Variable
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.
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.
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."
To: String Argument
Specifies the main recipients of the email message.
Cc: String Argument
Specifies the secondary recipients of the email message.
Bcc: String Argument
Specifies the hidden recipients of the email message.
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:FilePathEditorData Argument
Specifies a collection of paths of files that are to be attached to the email message.