Skip to content

Mailcatcher

Capture les emails en développement sans les envoyer réellement.

Quick Start

cd mail-servers/mailcatcher
docker compose up -d

Accès

  • Web UI : http://localhost:1080
  • SMTP : localhost:1025

Ports

Service Port Description
Web UI 1080 Interface web
SMTP 1025 Serveur SMTP

Configuration

compose.yml

services:
  mailcatcher:
    image: schickling/mailcatcher
    ports:
      - "1080:1080"
      - "1025:1025"

Configuration application

SMTP_HOST=mailcatcher
SMTP_PORT=1025

Liens