Skip to content

kalharas/netDumbster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status

netDumbster

is a .Net Fake SMTP Server clone of the popular Dumbster (http://quintanasoft.com/dumbster/)

netDumbster is based on the API of nDumbster (http://ndumbster.sourceforge.net/default.html) and the nice C# Email Server (CSES) written by Eric Daugherty.

License: http://www.apache.org/licenses/LICENSE-2.0.html

Usage

Create a netDumbster Server instance:

var server = SimpleSmtpServer.Start(port);

Check received email count:

var count = server.ReceivedEmailCount

Get the body of the first email received:

var smtpMessage = server.ReceivedEmail[0];
var body = smtpMessage.MessageParts[0].BodyData

Subscribe to the message received event:

server.MessageReceived += (sender, args) =>
    {
        // Get message body.
        var body = args.Message.MessageParts[0].BodyData;
    };

About

netDumbster is a .Net Fake SMTP Server clone of the popular Dumbster (http://quintanasoft.com/dumbster/)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%