gpt4 book ai didi

linux 命令 - 如何使用 shell 脚本向管理员发送通知电子邮件

转载 作者:太空宇宙 更新时间:2023-11-04 04:57:48 32 4
gpt4 key购买 nike

如何在 Linux 中使用 shell 脚本向管理员发送通知电子邮件关于监视给定站点/计算机,在运行时给出,并在任何站点/计算机变得无响应时通过电子邮件通知管理员

最佳答案

在 Linux 中向管理员发送通知电子邮件(我假设:本地 root 帐户):

echo "simple ascii only message here" | mail -s "subject line" root

cat notification_file | mail -s "subject line"  root
#note: notification_file's content will be the "body" of your email. Not an attachment.
#It should contain only regular ASCII characters... ie, basically:
# letters, numbers, punctuations, newlines, tabs, spaces.
#Anything else could be tricky. If you need more (unicode? attachments?),
#you should use a variant (ex: mutt ?) instead of the basic "mail" command

如果您指的是外部邮件、工作/个人电子邮件,您需要阅读一些有关邮件系统如何工作的信息,因为默认情况下它将无法以正确的方式到达正确的 smtp 服务器...

关于linux 命令 - 如何使用 shell 脚本向管理员发送通知电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41365753/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com