Easy to use, self-hosted e-mail sending debugging tool with a React.js web interface. Fully written in TypeScript.
E-mail rendering provided by react-letter.
Check other TypeScript e-mail projects:
Rendering (React.js) | Rendering (Vue.js) | Parser | Inbound SMTP |
---|---|---|---|
react-letter | vue-letter | letterparser | microMTA |
A docker-compose configuration is available in the catchmail-docker repository.
Installation can be achieved without Docker as well:
First you need to clone, build and run catchmail-ws, read the README in catchmail-ws for more information on configuration.
Then you need to clone this project, point it to the WebSockets backend (catchmail-ws) (in .env.local), build it and place it on some static file server (I use nginx for that). I also use nginx to proxy the back end through it. Here's a guide on how to achieve that.
The following variables are used in the build process:
Variable | Default value | Description |
---|---|---|
REACT_APP_TITLE |
catchmail |
Application title. |
REACT_APP_SERVER |
ws://[hostname]:5000/ws |
WebSockets server location. |
REACT_APP_USE_BROWSER_ROUTER |
0 |
1 if you want the application to use BrowserRouter instead of HashRouter. |