The IFluentMail type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| AddAlternative |
Adds alternative view for this message.
| |
| AddAppointment |
Adds specified appointment as alternative view for this message.
| |
| AddAttachment(array<Byte>[]()[][]) |
Adds a attachment to the message.
| |
| AddAttachment(String) |
Adds a attachment to the message.
| |
| AddCustomHeader |
Adds custom header.
| |
| AddVCard |
Adds specified VCARD as attachment to this message.
| |
| AddVisual(array<Byte>[]()[][]) |
Adds a visual attachment to the message.
| |
| AddVisual(String) |
Adds a visual attachment to the message.
| |
| Bcc(String) |
Adds 'BCC' (Blind Carbon Copy) header.
| |
| Bcc(MailAddress) | ||
| Cc(String) |
Adds 'CC' (Carbon Copy) header.
| |
| Cc(MailAddress) | ||
| Create |
Creates new IMail object.
| |
| Date |
Sets the send date of the message.
| |
| DKIMSign(RSACryptoServiceProvider, DKIMSignatureInfo) |
Signs the message using DKIM (DomainKeys Identified Mail) signature.
| |
| DKIMSign(RSACryptoServiceProvider, String, String) |
Signs the message using DKIM (DomainKeys Identified Mail) signature.
| |
| EncryptWith |
Encrypts the message using specified certificate.
You can call this method multiple times to use several certificates for encryption.
General rule is that both sender and receiver should be able to decrypt the message.
| |
| From(String) |
Sets the author of this email.
| |
| From(MailBox) |
Sets the author of this email.
| |
| Html |
Sets the HTML of this message.
If value is not empty extracts plain text from HTML and overrides Text(String).
| |
| Importance |
Sets the importance of the message.
It's easier to use PriorityHigh()()()() or PriorityLow()()()() methods then using this method.
| |
| InReplyTo |
Sets id of the message that this message replies to.
| |
| MessageID |
Sets id of the message. Without surrounding brackets (< and >).
If not set or set to null generated automatically.
| |
| NotificationTo(String) |
Adds 'Disposition-Notification-To'. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| NotificationTo(MailBox) |
Adds 'Disposition-Notification-To'. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| Priority |
Sets the priority of the message.
It's easier to use PriorityHigh()()()() or PriorityLow()()()() methods then using this method.
| |
| PriorityHigh | ||
| PriorityLow |
Sets XPriority(Int32) to 5, Priority(MimePriority) to NonUrgent and
Importance(MimeImportance) to Low | |
| References |
Adds message id of the referenced message.
| |
| ReplyTo(String) |
Adds 'Reply-To' header.
| |
| ReplyTo(MailAddress) | ||
| RequestReadReceipt |
This method copies From list to all read receipts lists just before email is created (Create()()()() method).
Read receipts are stored using ,
or header.
| |
| ReturnReceiptTo(String) |
Adds 'Return-Receipt-To' header. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| ReturnReceiptTo(MailBox) |
Adds 'Return-Receipt-To' header. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| Send |
Sends the message using provided SMTP client instance.
| |
| Sender(String) |
Sets the sender of this email.
| |
| Sender(MailBox) |
Sets the sender of this email.
| |
| Sensitivity |
Sets the Sensitivity of the message ('Sensitivity' field)
| |
| SignWith |
Signs the message.
| |
| Subject |
Sets the subject of the message.
| |
| Text |
Sets the plain text of this message.
| |
| To(String) |
Adds email recipient.
| |
| To(MailAddress) | ||
| UsingNewSmtp()()()() |
Creates new SMTP configuration for this message with localhost set as a server.
| |
| UsingNewSmtp(String) |
Creates new SMTP configuration for this message with specified server address.
| |
| XConfirmReadingTo(String) |
Adds 'X-Confirm-Reading-To' header. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| XConfirmReadingTo(MailBox) |
Adds 'X-Confirm-Reading-To' header. It's easier to use RequestReadReceipt()()()() then using this method.
| |
| XPriority |
Sets the X-Priority for an email (Outlook specific).
It's easier to use PriorityHigh()()()() or PriorityLow()()()() methods then using this method.
|