Rebex EWS

EWS, SMTP, MIME, S/MIME libraries for .NET

Download 30-day free trial Buy from $199
More .NET libraries

Back to feature list...

SMTP library

Sending e-mails using SMTP library 

Rebex EWS also includes Rebex.Smtp assembly that provides various ways of sending e-mails using SMTP server.

The easiest way to send an e-mail message is this:

// send mail
Rebex.Net.Smtp.Send("from@example.org", "to@example.org", "Subject", "Body", "smtp.example.org");
' send mail
Rebex.Net.Smtp.Send("from@example.org", "to@example.org", "Subject", "Body", "smtp.example.org")
See more features for sending e-mails at Rebex SMTP home page.

Advanced SMTP operations 

Rebex.Smtp assembly also supports handling rejected recipients, 8bit MIME, pipelining and chunking or various SMTP extensions.

For more information, see advanced features at Rebex SMTP home page.

Back to feature list...