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
Connection Id:
GraphServiceClient Variable
Specifies the office 365 connection id.Account:
String ArgumentSpecifies 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 ArgumentSpecifies 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 ArgumentSpecifies the subject of the email message.
Options
From:
String ArgumentSpecifies the email address from which the email message is sent.Subject:
String ArgumentSpecifies 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 ArgumentSpecifies mail addresses to be used when replying.Each of the mail addresses should be separated by a semicolon."
Recipients
To:
String ArgumentSpecifies the main recipients of the email message.Cc:
String ArgumentSpecifies the secondary recipients of the email message.Bcc:
String ArgumentSpecifies the hidden recipients of the email message.
Attachments
Attachments:
FilePathEditorData ArgumentSpecifies a collection of paths of files that are to be attached to the email message.
Last updated