欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

发送邮件代码

shiping1 的头像
有以下几种方法
1)
cat /root/crontabdirectory/notice.txt |  mail -s "shipingzhong" 958186957@qq.com

2)
 mail -s "shipingzhong" 958186957@qq.com  < /root/crontabdirectory/notice.txt

3)  mail -s "shipingzhong" 958186957@qq.com  <<< "aaaaaaaaaa"

4) 这个写在shell脚本里  然后 ./shell脚本文件名
#!/bin/sh
content=$(cat /root/crontabdirectory/notice.txt)
mail -s "shipingzhong" 958186957@qq.com  <<< "$content"
普通分类: