Rebex Graph
.NET client library for MS Graph API (Exchange Online)
Download 30-day free trial Buy from $199More .NET libraries
-
Rebex Mail Pack
IMAP, MS Graph, EWS, POP3, SMTP, MIME, S/MIME, MSG
-
Rebex Total Pack
All Rebex .NET libraries together
Back to feature list...
SMTP library
On this page:
Sending e-mails using SMTP library
Rebex Graph 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...