Skip to content

Instantly share code, notes, and snippets.

@v-jacob
v-jacob / Mailhog Bash Script (systemd)
Last active September 1, 2024 15:47
Mailhog setup with systemd
#!/usr/bin/env bash
echo ">>> Installing Mailhog"
# Download binary from github
wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v1.0.0/MailHog_linux_amd64
# Make it executable
chmod +x ~/mailhog