FireMail for .NET is a simplified library for creating mail messages. There are three common objects that are used: Message, Address and Attachment. The Message object represents a mail message and each mail message varies by its encoding type. Address represents a combination of full name and email, and Attachment represents an attachment with in the mail message.
A message is further categorized into:
- PlainTextMessage - A MIME message, which consists of only plain text as body.
- HtmlMessage - A MIME message, which contains either HTML, plain text or both as body. Optionally HTML message can also contain a plain text alternative body.
- UUEncodedMessage - A RFC 822 based message, which only supports printable ASCII characters and attachments. This message is best suited for sending messages to clients on older Unix systems.
| See Also |
Message Class | Address Class | Attachment Class | Programming with FireMail for .NET

