All Projects → cmendible → Netdumbster

cmendible / Netdumbster

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

Projects that are alternatives of or similar to Netdumbster

haraka-plugin-mongodb
Plugin for the Haraka SMTP server to store incoming and outgoing emails to MongoDB
Stars: ✭ 25 (-71.59%)
Mutual labels:  smtp, smtp-server
Smtpserver
A SMTP Server component written in C#
Stars: ✭ 382 (+334.09%)
Mutual labels:  smtp, smtp-server
jolimail
Send nice emails
Stars: ✭ 78 (-11.36%)
Mutual labels:  smtp, smtp-server
yggmail
End-to-end encrypted email for the mesh networking age
Stars: ✭ 72 (-18.18%)
Mutual labels:  smtp, smtp-server
Smtp Server
Create custom SMTP servers on the fly
Stars: ✭ 655 (+644.32%)
Mutual labels:  smtp, smtp-server
docker-protonmail-bridge
Run ProtonMail Bridge in a docker container
Stars: ✭ 34 (-61.36%)
Mutual labels:  smtp, smtp-server
Maildev
📫 SMTP Server + Web Interface for viewing and testing emails during development.
Stars: ✭ 3,102 (+3425%)
Mutual labels:  smtp, smtp-server
SimpleKotlinMail
A simple, coroutine based Kotlin Email API for both client- and server-side projects
Stars: ✭ 56 (-36.36%)
Mutual labels:  smtp, smtp-server
Exim
Exim Mail Transport Agent - source, testsuite and documentation
Stars: ✭ 545 (+519.32%)
Mutual labels:  smtp, smtp-server
Salmon
A Python Mail Server
Stars: ✭ 482 (+447.73%)
Mutual labels:  smtp, smtp-server
mailgrab
Simple and easy to use catch-all SMTP mail server and debugging tool
Stars: ✭ 92 (+4.55%)
Mutual labels:  smtp, smtp-server
Mailslurper
Local, web-based mail server application. Slurp mails into oblivion!
Stars: ✭ 920 (+945.45%)
Mutual labels:  smtp, smtp-server
smtpd
SMTP server (library) for receiving emails, written in pure PHP.
Stars: ✭ 94 (+6.82%)
Mutual labels:  smtp, smtp-server
smtp-dkim-signer
SMTP-proxy that DKIM-signs e-mails before submission to an upstream SMTP-server.
Stars: ✭ 28 (-68.18%)
Mutual labels:  smtp, smtp-server
blackhole
Blackhole is an MTA written on top of asyncio, utilising async and await statements that dumps all mail it receives to /dev/null.
Stars: ✭ 61 (-30.68%)
Mutual labels:  smtp, smtp-server
Notqmail
Collaborative open-source successor to qmail
Stars: ✭ 255 (+189.77%)
Mutual labels:  smtp, smtp-server
ControlCenter
Mirrored from GitLab! Monitoring and automation for Open Source email servers, starting with Postfix. Please do not submit issues or PRs here - join us at: https://gitlab.com/lightmeter
Stars: ✭ 88 (+0%)
Mutual labels:  smtp, smtp-server
MailDemon
Smtp server for mass emailing, managing email lists and more. Built on .NET Core. Linux, MAC and Windows compatible.
Stars: ✭ 113 (+28.41%)
Mutual labels:  smtp, smtp-server
Docker Smtp
SMTP docker container
Stars: ✭ 447 (+407.95%)
Mutual labels:  smtp, smtp-server
Inbucket
Disposable webmail server (similar to Mailinator) with built in SMTP, POP3, RESTful servers; no DB required.
Stars: ✭ 685 (+678.41%)
Mutual labels:  smtp, smtp-server

dotnetcore

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:

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;
    };
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].