不使用 mutt 和 uuencode 将文件作为附件发送

不使用 mutt 和 uuencode 将文件作为附件发送

如何在 bash 脚本中通过电子邮件将文件作为附件发送,而不使用muttuuencode

答案1

echo "Message body" | mailx -s "Subject" -a "/path/to/attachment" [email protected]

或者

cat "/path/to/messagebody.txt" | mailx -s "Subject" -a "/path/to/attachment" [email protected]

相关内容