An SMTP server that converts emails into Pushover notifications.
10K+
Pushover is a fantastic service, but email notification via SMTP remains the standard for Unix daemons, Internet of Things, and embedded devices. SMTP Translator bridges the gap by receiving emails via SMTP and converting them into Pushover notifications, providing a simpler and more secure alternative to replicating your Gmail password on all of your systems.
docker run -it --rm -p 25:25 -e PUSHOVER_TOKEN=pushover.application.token whumphrey/smtp-translator
telnet 127.0.0.1 25
EHLO
MAIL FROM:<[email protected]>
RCPT TO:<[email protected]> NOTIFY=success,failure
DATA
Subject: Simple Test
<enter>
This is a test message
.
QUIT
Content type
Image
Digest
Size
6.4 MB
Last updated
over 6 years ago
docker pull whumphrey/smtp-translator