18 lines
237 B
Bash
Executable File
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
|
|
|