sh 监控网站的字符串并发送电子邮件如果找不到(没有本地smtp)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 监控网站的字符串并发送电子邮件如果找不到(没有本地smtp)相关的知识,希望对你有一定的参考价值。

if lynx --dump https://xxxxxxxxxxx |grep --quiet 'Something i am looking for' ; then
  echo "Still there"
else
  swaks --to xxxxxxxxxx@gmail.com --from "xxxxxxxxx@googlemail.com" --server smtp.gmail.com --auth PLAIN --auth-user "xxxxxxxxxx@googlemail.com" --auth-password "xxxxxxxxxxxxx" -tls -p 587 --h-Subject your-special-subject--body "your body"
fi

以上是关于sh 监控网站的字符串并发送电子邮件如果找不到(没有本地smtp)的主要内容,如果未能解决你的问题,请参考以下文章

python实现自动监控网站并发送邮件告警

sh Bash脚本,用于检查网站是启动还是关闭,并通过电子邮件发送通知

zabbix监控无法发送邮件到指定的邮箱

戴尔电脑电子邮件代码在哪里看

发邮件自己的邮箱提示邮件已发送,为啥对方说没收到?

关于邮件发送公共程序的思考.