#!/opt/local/bin/zsh

setopt X_Trace

telnet my_computer.local smtp <<-EOF
    HELO my_computer.local
    MAIL FROM: root@my_computer.local
    RCPT TO: my_name@my_computer.local
    DATA
    Subject: Test Mail
    From: root@my_computer.local
    To: my_name@my_computer.local

    Some Text

    .

    QUIT

EOF

# vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
# vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

