devMail.Net Mobile Edition
| Submitted On |
May 17, 2005 |
| Updated on |
July 25, 2007 |
| .NET Framework |
1.x |
| Cost |
$499 |
Description
devMail.Net Mobile is a powerful mobile email component for .NET compact framework with Smtp, Pop3, Imap and Mime support.
Easily send, receive and process email messages, manage Imap mailboxes in your mobile application with devMail.Net Mobile Edition.
Send
- Send html emails with embedded images and styles
- Send both plain text and html content in the same message
- Add any number of attachments, images or documents
Receive
- Retrieve email messages from Pop3 and Imap4 servers
- Display email contents such as From, Subject, Body and attachments
- Delete any emails from the mailbox
- Search, sort, mark and partially retrieve messages (Imap only)
Process
- Retrieve any message property (auto-decoded by powerful Mime parser)
- Process incoming emails
- Send and receive messages in any language and any international character set
Advanced features
- Save and load messages as XML or .eml
- Save and load attachments from files or streams
- Perform message and folder operations on mailbox hierarchy (Imap only)
Get started with Code Samples
Syntax Example
private void SimpleEmail()
{
// Declare a new MailMessage object
MailMessage msg = new MailMessage();
// Recipient name and email address
// Extra recipients can be added to
// "To", "Cc" and "Bcc" collections as well
msg.To.Add("Bob User", "bob@example.com");
// Sender name
msg.From.Name = "John Doe";
// Sender email
msg.From.EMail = "john@example.com";
// Subject
msg.Subject = "Meeting request";
// Email body
msg.Body = "Hello Bob, can we meet tomorrow?";
// Smtp server to relay the message
msg.SMTPServer.Host = "localhost";
// Send the message
if (msg.Send())
{
Form.WriteLine("Message has been sent successfuly.");
}
else
{
Form.WriteLine("Error: " + msg.SMTPServer.LastError);
}
}
[Vb]
Private Sub SimpleEmail()
' Declare a new MailMessage object
Dim msg As New MailMessage
' Recipient name and email address
' Extra recipients can be added to
' "To", "Cc" and "Bcc" collections as well
msg.To.Add("Bob User", "bob@example.com")
' Sender name
msg.From.Name = "John Doe"
' Sender email
msg.From.EMail = "john@example.com"
' Subject
msg.Subject = "Meeting request"
' Email body
msg.Body = "Hello Bob, can we meet tomorrow?"
' Smtp server to relay the message
msg.SMTPServer.Host = "localhost"
' Send the message
If msg.Send() Then
Form.WriteLine("Message has been sent successfuly.")
Else
Form.WriteLine(("Error: " + msg.SMTPServer.LastError))
End If
End Sub
Reviews
Submit a review