如何通过UNIX mailx命令发送电子邮件?

最佳答案

一个例子

$ echo "something" | mailx -s "subject" [email protected]

发送附件
$ uuencode file file | mailx -s "subject" [email protected]

并发送附件并编写邮件正文
$ (echo "something\n" ; uuencode file file) | mailx -s "subject" [email protected]

08-27 14:07