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
| Name | Description | |
|---|---|---|
| GetSmtpData |
Returns ready-to-send string from this message.
(Inherited from ISmtpMail.) |
Public Properties
| Name | Description | |
|---|---|---|
| Attachments |
List of all attachment objects.
| |
| Bcc |
'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.
| |
| Cc |
'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.
| |
| Date |
'Date' field, message send date.
May be null in case of parsing error.
| |
| Document |
MimeDocument object associated with this object.
| |
| From |
From email address.
| |
| HtmlData |
Object representing 'text/html' body.
Null if not present.
| |
| HtmlDataString |
Html data.
| |
| Importance |
'Importance' field, message's importance.
| |
| InReplyTo |
'In-Reply-To' field, message's parents.
Without surrounding brackets (< and >)
| |
| MessageID |
'Message-ID' field, message's id.
Without surrounding brackets (< and >)
| |
| NotificationTo |
'Disposition-notification-to' field.
May be empty.
| |
| Priority |
'Priority' field, message's priority.
| |
| ReplyTo |
'Reply-to' field, mailbox(es) to which the author of the message suggests that replies be sent.
May be empty.
| |
| Sender |
'Sender' field, mailbox of the agent responsible for the actual transmission.
If 'Sender' is null use From property.
| |
| Subject |
'Subject' field, message's subject. May be null.
| |
| TextData |
Object representing 'text/plain' body.
Null if not present.
| |
| TextDataString |
Plain text data.
| |
| To |
Gets the collection of email addresses this message will be sent to.
| |
| Visuals |
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
Lesnikowski.Mail Namespace