Syntax

C#
public interface ISimpleMailMessage
Visual Basic (Declaration)
Public Interface ISimpleMailMessage
Visual C++
public interface class ISimpleMailMessage

The type exposes the following members.

Public Methods

  NameDescription
Public methodGetSmtpData
Returns ready-to-send string from this message.
(Inherited from ISmtpMail.)

Public Properties

  NameDescription
Public propertyAttachments
List of all attachment objects.
Public propertyBcc
'Bcc' field (Blind Carbon copy), addresses of others who are to receive the message, tough the content of the message may not be directed at them. May be empty.
Public propertyCc
'Cc' field (Carbon copy), addresses of others who are to receive the message, eventough the content of the message may not be directed at them. May be empty.
Public propertyDate
'Date' field, message send date. May be null in case of parsing error.
Public propertyDocument
MimeDocument object associated with this object.
Public propertyFrom
From email address.
Public propertyHtmlData
Object representing 'text/html' body. Null if not present.
Public propertyHtmlDataString
Html data.
Public propertyImportance
'Importance' field, message's importance.
Public propertyInReplyTo
'In-Reply-To' field, message's parents. Without surrounding brackets (< and >)
Public propertyMessageID
'Message-ID' field, message's id. Without surrounding brackets (< and >)
Public propertyNotificationTo
'Disposition-notification-to' field. May be empty.
Public propertyPriority
'Priority' field, message's priority.
Public propertyReplyTo
'Reply-to' field, mailbox(es) to which the author of the message suggests that replies be sent. May be empty.
Public propertySender
'Sender' field, mailbox of the agent responsible for the actual transmission. If 'Sender' is null use From property.
Public propertySubject
'Subject' field, message's subject. May be null.
Public propertyTextData
Object representing 'text/plain' body. Null if not present.
Public propertyTextDataString
Plain text data.
Public propertyTo
Gets the collection of email addresses this message will be sent to.
Public propertyVisuals
List of all visual elements. You can use [string cid] to find picture embedded in html body with specifed contentid ('content-id' header field).

See Also