0
如何用mailx發送包含正文和附件的電子郵件?用郵件發送包含正文和附件的電子郵件x
此代碼將發送電子郵件與身體:
cat $body | tr -d \\r | mailx -s "SUBJECT" [email protected]
tr -d \\r
在這種情況下必要的,因爲如果身體沒有通過管道輸送tr
,它將作爲一個的.bin附件發送(爲這個特定的機構)。找到了解決身體發送的.bin文件的位置:Use crontab job send mail, The email text turns to an attached file which named ATT00001.bin
我試圖把-f $attachment
主題後,但我考慮到誤差,More than one file given with -f
,並且該命令將無法運行。
有答案。我很尷尬。謝謝。 – sharpmartin6