Click or drag to resize

MailBuilder Properties

The MailBuilder type exposes the following members.

Properties
  NameDescription
Public propertyAlternatives
Public propertyBcc
Gets the address(es) of others who are to receive this email message ('BCC', Blind Carbon Copy header), even tough the content of the message may not be directed at them. You can use MailBox to represent single mailbox, or MailGroup to represent group of email addresses. BCC header is not rendered when Render method is used, however it is rendered when message is saved using Save(String) method.
Public propertyCc
Gets the address(es) of others who are to receive this email message ('CC', Carbon Copy header), even tough the content of the message may not be directed at them. You can use MailBox to represent single mailbox, or MailGroup to represent group of email addresses.
Public propertyCreatePlainTextAutomatically
Gets or sets a value indicating if plain text version of a body is extracted from HTML when Html ot Rtf property is set. Default is true.
Public propertyDate
Gets or sets the send date of a email message ('Date' header). If null, Date is set automatically to current date and time when Create method is used.
Public propertyEnvelopeFrom
Gets or sets the address of the sender taken from the SMTP envelope (SMTP "MAIL FROM").
Public propertyEnvelopeTo
Gets or sets the address of the recipient taken from the SMTP envelope (SMTP "RCTP FROM").
Public propertyExtractRfc822Automatically
Gets or sets a value indicating if message (MessageRfc822, MessageGlobal) being a single root should be extracted. Default is true.
Public propertyFrom
Gets the author(s) of this email message ('From' header). If it's empty, email message is NOT RFC 2822 compliant.
Public propertyHtml
Gets or sets HTML version of the email. If value is not empty extracts plain text from HTML and overrides Text property.
Public propertyImportance
Gets or sets the importance of a email message ('Importance' header). Consider using PriorityHigh or PriorityLow methods instead of setting this field.
Public propertyInReplyTo
Gets or sets the id of the parent email message ('In-Reply-To' header). Does not include surrounding brackets (< and >).
Public propertyMessageID
Gets or sets id of a email message ('Message-ID' header). Does not include surrounding brackets (< and >). If not set or set to null generated automatically.
Public propertyMimeConfiguration
Gets MIME configuration (automatic binhex, apple, uue, tnef, rfc822 processing).
Public propertyNonVisuals
Gets the list of all non visual elements. You can use AddAttachment(Byte) method to add attachment to this collection.
Public propertyNotificationTo
Gets the disposition notifications address(es) ('Disposition-Notification-To' header). Consider using RequestReadReceipt method instead of adding addresses to this property.
Public propertyPriority
Gets or sets the priority of a email message ('Priority' header). Consider using PriorityHigh or PriorityLow methods instead of setting this field.
Public propertyProcessAppleAutomatically
Gets or sets a value indicating if files stored in AppleSingle (ApplicationAppleFile) and AppleDouble (MultipartAppleDouble) entities should be extracted. Default is true.
Public propertyProcessBinHexAutomatically
Gets or sets a value indicating if file stored in BinHex attachments (ApplicationBinHex) should be extracted. Default is true.
Public propertyProcessTnefAutomatically
Gets or sets a value indicating if TNEF attachments (winmail.dat) should be processed. TNEF processing extracts attachments and RTF data from TNEF file and removes TNEF from attachments collections afterwards. Default is true.
Public propertyProcessUueAutomatically
Gets or sets a value indicating if inline UUE attachments should be extracted. Default is true.
Public propertyRcptTo
Gets or sets the address of the recipient taken from the SMTP envelope (SMTP "RCTP FROM").
Public propertyReferences
Gets unique ids (MessageID) of the referenced email messages ('References' header). Does not include brackets (< and >).
Public propertyRemoveInlinedUue
Gets or sets a value indicating if text representation of inline UUE attachments should be removed from Text. Default is false. This property has no affect if ProcessUueAutomatically is set to false.
Public propertyReplyTo
Gets email address(es) to which the author of this email message suggests that replies be sent ('Reply-to' header). You can use MailBox to represent single mailbox, or MailGroup to represent group of email addresses.
Public propertyReturnPath
Gets or sets return path address ('Return-Path' header). Does not include brackets (< and >).
Public propertyReturnReceiptTo
Gets return receipt address(es) ('Return-Receipt-To' header). Consider using RequestReadReceipt method instead of adding addresses to this property.
Public propertyRtf
Gets or sets RTF version of the email. If value is not empty extracts plain text from RTF and overrides Text property.
Public propertySender
Gets or sets mailbox of the agent responsible for the actual transmission of this email message ('Sender' header).
Public propertySensitivity
Gets or sets the sensitivity of a email message ('Sensitivity' header).
Public propertySetDefaults
Gets or set the value indicating whether default values (MessageID, Date, Sender) should be set. Default is true.
Public propertySMIMEConfiguration
Gets or sets S/MIME configuration (automatic decryption, signed message extraction, certificates used for decryption and signature validation).
Public propertySubject
Gets or sets subject of a message ('Subject' header).
Public propertyText
Gets or sets plain text version of the email. Please remember that setting Html will override plain text.
Public propertyTo
Gets address(es) of the primary recipient(s) of this email message ('To' header). You can use MailBox to represent single mailbox, or MailGroup to represent group of email addresses.
Public propertyVisuals
Public propertyXConfirmReadingTo
Gets confirm reading address(es) ('X-Confirm-Reading-To' header). Consider using RequestReadReceipt method instead of adding addresses to this property.
Public propertyXEnvelopeFrom
Gets or sets the address of the sender taken from the SMTP envelope (SMTP "MAIL FROM").
Public propertyXPriority
Gets or sets the X-Priority of this email message ('X-Priority' header) (Outlook specific). Value ranges from "1" to "5" where "1" is the highest priority, "3" is normal, and "5" is the lowest priority. Consider using PriorityHigh or PriorityLow methods instead of setting this field.
Public propertyXRcptTo
Gets or sets the address of the recipient taken from the SMTP envelope (SMTP "RCTP FROM").
Top
See Also