# 参考链接1: http://man.linuxde.net/mail
# 使用管道发送邮件(适用于脚本中)
echo "hello,this is the content of mail.welcome to www.linuxde.net" | mail -s "Hello from linuxde.net by pipe" congyihao@jd.com
# 使用文件发送邮件(适用于脚本)
mail -s "Hello from linuxde.net by file" admin@linuxde.net < mail.txt
# 从shell接收输入
mail -s "Hello from linuxde.net by shell" admin@linuxde.net
hello,this is the content of mail.
welcome to www.linuxde.net
第一行是输入的命令,-s表示邮件的主题,后面的admin@linuxde.net则是邮件的接收人,输入完这行命令后回车,会进入邮件正文的编写,我们可以输入任何文字,比如上面的两行。当邮件正文输入完成后,需要按CTRL+D结束输入,此时会提示你输入Cc地址,即邮件抄送地址,没有直接回车就完成了邮件的发送。
# 添加附件(详见链接)