Skip to main content

Send SMTP Mail

Used for sending SMTP mail

Options

  • Is Body HTML: Specifies whether the body of the message is written in HTML format.
    • Type: System.Boolean
    • Required
  • Use SSL: Specifies whether the email message is sent using SSL.
    • Type: System.Boolean
    • Required

Email

  • Body: The body of the email message
    • Type: System.String
    • Required
  • Subject: The subject of the email message
    • Type: System.String
    • Required
  • Attachments: A list of string arguments that represent the attachments you want to send alongside the email.
    • Type: System.Collections.Generic.IDictionary<System.String, System.Activities.Argument>
  • Attachments Collection: An IEnumerable String object that specifies a list of files which you want to send as attachments.
    • Type: System.Collections.Generic.IList<System.String>

Host

  • Port: The port that the email message is to be sent through.
    • Type: System.Int32
    • Required
  • Server: The email server host that is to be used.
    • Type: System.String
    • Required

Common

  • Timeout: 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).
    • Type: System.Int32
    • Required

Logon

  • Email: The email account used to send the message.
    • Type: System.String
  • Password: The password of the email account used to perform the action.
    • Type: System.String

Receiver

  • Bcc: The hidden recipients of the email message
    • Type: System.String
  • Cc: The secondary recipients of the email message
    • Type: System.String
  • To: The main recipients of the email message
    • Type: System.String
    • Required

Sender

  • From: The email address of the sender.
    • Type: System.String
  • Name: The display name of the sender.
    • Type: System.String