This package contains two activities for sending mail messages with embedded images:
Send Outlook Mail with Embedded Images - This activity works with Outlook 2013 or higher.
· AttachmentsCollection- Enables you to specify a list of attachments to be added to the email message. This field supports only IEnumerable<String> variables.
· EmbeddedsCollection- Enables you to specify a dictionary where each key is the image CID and its value is the path of image file to be embedded in the email message. This field supports only IDictionary<String, String> variables.
· HTML Body - The HTML body of the email message.
· Subject- The subject of the email message.
· Account- The account used to send the messages.
· SentOnBehalfOfName- The display name of the sender of the mail message. This field supports only strings and String variables.
· IsDraft- Specifies whether the message should be saved as a draft.
· Bcc- The hidden recipients of the email message.
· Cc- The secondary recipients of the email message.
· To- The main recipients of the email message.
Send SMTP Mail With Embedded Images
· AttachmentsCollection- Enables you to specify a list of attachments to be added to the email message. This field supports only IEnumerable<String> variables.
· TimeoutMS- Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).
· HTML Body - The HTML body of the email message.
· Subject- The subject of the email message.
· EmbeddedsCollection- Enables you to specify a dictionary where each key is the image CID and its value is the path of image file to be embedded in the email message. This field supports only IDictionary<String, String> variables.
· Server- The email server host that is to be used.
· Port- The port that the email message is to be sent through.
· Email- The email account used to send the message.
· Password- The password of the email account used to send the message.
· SecurePassword- The password of the email account used, as a secure string.
SecureConnection - Specifies the SSL and/or TLS encryption to be used for the connection.
· Bcc- The hidden recipients of the email message.
· Cc- The secondary recipients of the email message.
· To- The main recipients of the email message.
· From - The email address of the sender.
· Name- The display name of the sender.