Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cmendible/netDumbster

netDumbster is a .Net Fake SMTP Server clone of the popular Dumbster
https://github.com/cmendible/netDumbster

c-sharp hacktoberfest smtp smtp-server unit-testing

Last synced: about 2 months ago
JSON representation

netDumbster is a .Net Fake SMTP Server clone of the popular Dumbster

Lists

README

        

![dotnetcore](https://github.com/cmendible/netDumbster/workflows/dotnetcore/badge.svg)

# netDumbster
**netDumbster** is a .Net Fake SMTP Server clone of the popular **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:
````
using 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;
};
````