BARANTMail/tests/testsmtp
2022-08-03 16:17:20 -07:00

18 lines
237 B
Bash
Executable File

#!/bin/bash
nc localhost 9025 > /dev/null << EOL
EHLO barant.com
MAIL FROM: <brad.arant@barant.com>
RCPT TO: <barant@barant.com>
DATA
From: barant@barant.com
To: barant@barant.com
Subject: test email system
This is a test
.
QUIT
EOL