在 asp.net mvc 3 中的后台作业/计划任务中发送电子邮件
我有一个 ASP.NET MVC 3 Web 应用程序托管在正常托管上(即没有自有服务器或虚拟服务器),并且我希望能够存储电子内容邮件存储在数据库中,并通过某种后台作业来接收和发送它们。
如果这是我自己的服务器,我会编写一个 Windows 服务来处理这个问题,但是有什么方法可以在 Web 应用程序进程中实现/模拟计划任务/后台作业?
I have an ASP.NET MVC 3 web app hosted on normal hosting, (i.e., no owned or virtual server), and I would like to be able to store e-mails say in a database and have them picked up and sent in a background job of sorts.
If this was my own server I'd write a Windows Service to handle this, but is there any way I could implement/simulate a scheduled task/background job in a web application process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以查看 Quartz.NET。有一篇 博客文章 关于如何使其在中等信任度下运行。
You may take a look at Quartz.NET. There is a blog post about how you could make it running in medium trust.
您可以查看这篇文章(https://blog.stackoverflow.com/ 2008/07/easy-background-tasks-in-aspnet/)解释了如何在 ASP.NET 或 ASP.NET MVC 中不使用 Windows 服务运行计划任务。
You can take a look at this post (https://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/) which explains on how run scheduled tasks without using windows service, in asp.net or asp.net mvc.
您还可以使用工作现金:
有关详细信息,请参阅此
You can also use job cash:
For Details See this