标签:简单 没有 str 编辑 get note mailx config lin
检查MTA是否为Postfix:alternatives --display mta
service postfix status
service postfix start
最简单的方法:
mail -s text **@mail.ustc.edu.cn
这条命令的结果是发一封标题为text的空信给后面的邮箱,可是往往这类邮件会被当成垃圾邮件来处理。所以假设没有收到邮件,建议打开垃圾箱来查看一下.第一种方法,你能够把当前shell当成编辑器来用,编辑完内容后Ctrl-D结束。
#另外一种方法。使用管道命令
echo “This is a test mail!”|mail -s text **@mail.ustc.edu.cn
#第三种方法。使用重定向。
mail -s test **@mail.ustc.edu.cn < file
以file的内容为邮件内容发信,首先选择事先写好一个文档然后再mail过去。
带附件的邮件发送(重点)
假设你的系统中没有uuencode命令的话,则须要先安装sharutils。
sudo apt-get install sharutils。
uuencode 须要两个參数,第一个是你要发送的文件,当然这个也能够用管道来做。第二个是显示的文件名称
uuencode /home/daniel/httpd.conf httpd.conf|mail -s mailtest **@mail.ustc.edu.cn
标签:简单 没有 str 编辑 get note mailx config lin
原文地址:http://www.cnblogs.com/lxjshuju/p/6748820.html