我需要使用脚本定期发送生成的 CSV 文件。我正在使用UUENCODE
和mailx
相同的。
但我需要知道是否有任何方法/方式可以知道该电子邮件已成功发送?任何形式的确认或反馈之类的???
它可能会报告任何错误。此外,该文件是机密文件,不打算偏离某些外部路径。
编辑:用于邮寄的代码。
subject="Something happened"
to="na734@company.com"
body="Attachment Test"
attachment=/home/iv315/timelog_file_150111.csv
(cat test_msg.txt; uuencode $attachment somefile.csv) | mailx -s "$subject" "$to"