The Open Source email template manager.
Say goodbye to email headaches! With Munbun, Email Template Manager, you can design, customize, and send stunning emails using your favorite providers all in one place.
- Logging system
- Account management
- Edit project and template details
- Version control
- Rest API
- Dashboard
- Gmail SMTP support
- Resend support
- Sveltekit - Framework
- Drizzle - ORM
- Tailwind - CSS
- shadcn-svelte - Component Library
- hono - API
-
Clone the repo
git clone https://github.com/boon4681/munbun.git cd munbun -
Setup environment variables
cp .env.example .env # Edit .env with your Google OAuth credentials and other settings -
Build and run
docker build -t munbun . docker run -d -p 3000:3000 -v munbun-data:/app/_munbun_ --env-file .env --name munbun munbunAlternatively, if you prefer Docker Compose:
Create a
docker-compose.yml:version: '3.8' services: munbun: build: . ports: - "3000:3000" volumes: - munbun-data:/app/_munbun_ env_file: - .env restart: unless-stopped volumes: munbun-data:
And run:
docker-compose up -d
-
Clone the repo
Clone it on your local machine using:
git clone https://github.com/boon4681/munbun.git
-
Install Dependencies
yarn # or npm install -
Copy the env.example file into .env
cp .env.example .env
-
Run it
yarn dev --host
- boon4681
