mailx 명령을 사용하여 이메일의 첨부 파일, 제목 및 본문을 보내는 방법을 알려주실 수 있나요?
나는 사용하고있다
uuencode travel$datestamp.XLS Travel$datestamp.XLS | mail -s "International Savers Tracking" [email protected] -- -f [email protected] < BodyofTheMail.txt
제목은 있지만 이메일 본문은 없는 첨부 파일을 보냅니다.
답변1
파이프와 간접적으로 모두 입력할 수 있습니다 mail
. 표준 입력은 하나만 가질 수 있습니다. 또한 uuencode
필요하지 않습니다. 노력하다:
mail -s "Subject" -a /path/to/attachments/file.ext [email protected] < /path/to/messagebody.txt