当邮件未收到邮件时请告诉我(例如成功的数据库备份)
我正在构建一个网站,并且每天在其上运行数次数据库备份。
每个成功的备份都会发送到我的邮件(并由规则定向到文件夹,因为有很多备份..),每个失败也会发送给我(不是由规则定向)。
我担心该任务会因某种原因停止运行,而我不知道(没有警报到达,但我如何在模糊的邮件中注意到它)。
当在特定时间内未收到邮件时,是否有软件或流程会提醒我?
我在这里问的原因是我想开发这种东西(如果不存在的话)。 谢谢
I have a site I'm building and have a DB backup running on it several times a day.
Every successful backup is sent to my mail (and directed by a rule to a folder since there are many backups..) and every failure is also sent to me (not directed by a rule).
I'm afraid that the task will stop running from some reason and I will not know (no alerts arriving but how can I notice it in the blur of mails).
Is there a SW or process that alerts me when a mail was not received during a specific time?
The reason I'm asking here is that I want to develop this kind of thing (if does not exist).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你无法知道,除非你为自己创造一些东西。例如,自动回复收到的消息的规则(在接收者的邮箱中)。你的程序(发送电子邮件的)应该在发送后x秒内检查自己的邮箱是否有回复。
通常它只是一个发送和再见系统,除非电子邮箱已满、无法访问等。
You cannot know, unless you create something for yourself. E.g. a rule to auto-reply the received message (at receiver's mailbox). Your program (that sent the e-mail) should check his own mailbox within x seconds for the reply after sending.
Normally it is just a send and goodbye system, unless the e-mail box is full, unreachable, etc.