1
vote
Korn Shell code to send attachments with mailx and uuencode?
You have to concat both the text of your message and the uuencoded attachment:
$ subject="Something happened"
$ to="somebody@somewhere.com"
$ body="Attachment Test"
$ attachment=/pa …
