how to send an email via mailx with enclosed file

前端 未结 5 1157
后悔当初
后悔当初 2020-12-31 09:16

I need to sent a file via mailx or mail, but I wat to sent it as attachment not in the body message. Is there any way how to do it ? Eventually is there any other tool in s

5条回答
  •  再見小時候
    2020-12-31 09:46

    You can attach files to mailx using -a like so

    echo "this is the body of the email" | mailx -s"Subject" -a attachment.jpg Someone@Domain.com
    

    so long as your in the same directory as your attachment that should work fine. If not you can just state the directory like `

    samachPicsFolder/samachpic.jpg
    

提交回复
热议问题