an example
$ echo “something” | mailx -s “subject” [email protected]
to send attachment
$ uuencode file file | mailx -s “subject” [email protected]
and to send attachment AND write the message body
$ (echo “somethingn” ; uuencode file file) | mailx -s “subject” [email protected]
Here you are :
echo “Body” | mailx -r “FROM_EMAIL” -s “SUBJECT” “To_EMAIL”
PS. Body and subject should be kept within double quotes.
Remove quotes from FROM_EMAIL and To_EMAIL while substituting email addresses.