Email templates for Minecraft server built with React Email and compiled to Handlebars format.
First, install the dependencies:
bun installThen, run the development server:
bun run devOpen localhost:5000 with your browser to see the result.
Build Handlebars templates:
bun run build:handlebarsThe templates will be generated in dist/handlebars/ directory.
- activation - Account activation email
- banned - Account suspension notice
- change-email - Email change confirmation
- login - Login notification
- register-success - Registration success welcome
- reset-password - Password reset
Releases are automatically created when you push a tag or use the workflow dispatch:
git tag v1.0.0
git push origin v1.0.0- Go to Actions tab in GitHub
- Select "Build and Release" workflow
- Click "Run workflow"
- Enter version tag (e.g.,
v1.0.0) - Click "Run workflow"
The workflow will:
- Build Handlebars templates
- Create a zip archive
- Create a GitHub release with the templates
MIT License