我知道有一些方法可以在 Linux/MacOS 中从终端发送电子邮件,但我似乎无法找到有关如何执行此操作的适当文档。
基本上,我的 bash 脚本需要它,每次文件发生更改时都会通知我。
进入终端并输入man mail帮助。
man mail
您将需要设置SMTP:
SMTP
http://hints.macworld.com/article.php?story=20081217161612647
也可以看看:
http://www.macricksandtips.com/2008/09/send-mail-over-your- network.html
例如:
mail -s "hello" "example@example.com" <<EOF hello world EOF
这将发送一封example@example.com包含主题hello和消息的电子邮件
example@example.com
hello
hello world
world