Trying to send an email from shell (Centos 6) using one line command, but subject is empty
echo 'body' | /usr/sbin/sendmail [email protected] Subject:"Test Send Mail"
Spent hours trying googling and find an answer how to send email using "/usr/sbin/sendmail" with subject, but no matter what I try, subject is empty.
(echo "Subject: Test"; echo; echo 'body')|/usr/sbin/sendmail -i [email protected]
Or cleaner script version
#!/bin/sh
/usr/sbin/sendmail -i [email protected] <<END
Subject: Test
body
END
WARNINGS: