alfiosalanitri/massive-mail-sender

By alfiosalanitri

Updated over 1 year ago

Flask app to send custom HTML emails to multiple recipients, with login and email composition UI.

Image
Networking
Message queues
0

286

alfiosalanitri/massive-mail-sender repository overview

Run with .env file

LOGIN_PASSWORD=1234
SMTP_SERVER=smtp.example.com
SMTP_PORT=587
[email protected]
SMTP_PASSWORD=your_password
[email protected]

docker run --env-file .env -p 7000:5000 alfiosalanitri/massive-mail-sender


or


Run with Docker Compose

services:
  app:
    image: alfiosalanitri/massive-mail-sender
    ports:
      - "7000:5000"
    environment:
      - LOGIN_PASSWORD=1234
      - SMTP_SERVER=smtp.example.com
      - SMTP_PORT=587
      - [email protected]
      - SMTP_PASSWORD=your_password
      - [email protected]

docker compose up -d

Tag summary

Content type

Image

Digest

sha256:fdc50c1ff

Size

52 MB

Last updated

over 1 year ago

docker pull alfiosalanitri/massive-mail-sender