Skip to content
This repository has been archived by the owner on Jul 10, 2019. It is now read-only.

Latest commit

 

History

History
32 lines (20 loc) · 678 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 678 Bytes

browsersmtp

Incredibly hacky SMTP integration test server in the browser.

See demo here.

Hook BrowserSMTP server with SmtpClient

Create server instance

server = new BrowserSMTP({});

Create client instance

client = new SmtpClient(false, false, {
    auth: {
        user: "testuser",
        pass: "demo"
    },
    useSSL: false
});

Replace TCPSocket constructor with a mock object from the server

client._TCPSocket = server.createTCPSocket();

Connect to the server and start hacking

client.connect();

Thats it!