1
我試圖通過電子郵件發送多個文件,但在電子郵件中也包含正文消息,我嘗試了幾種方法沒有運氣,以下代碼是發送多個文件:通過電子郵件發送多個文件,並向電子郵件添加正文消息(Unix Korn Shell)
(uuencode file1.txt file1.txt ; uuencode file2.txt file2.txt) | mailx -s "test" [email protected]
我試過這個選項沒有運氣:
echo "This is the body message" | (uuencode file1.txt file1.txt ; uuencode file2.txt file2.txt) | mailx -s "test" [email protected]
任何想法,怎麼可能是代碼?
這是真棒!作爲一種魅力工作! –