在 asp.net mvc 3 中的后台作业/计划任务中发送电子邮件

发布于 2024-10-19 13:21:26 字数 183 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不奢求什么 2024-10-26 13:21:26

您可以查看 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.

眼眸里的那抹悲凉 2024-10-26 13:21:26

您可以查看这篇文章(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.

单身狗的梦 2024-10-26 13:21:26

您还可以使用工作现金:

 HttpContext.Current.Cache.Add("jobkey",  
                         "jobvalue", null,  
                         DateTime.MaxValue,  
                         TimeSpan.FromSeconds(15), // set the time interval  
                         CacheItemPriority.Default, JobCacheRemoved); 

有关详细信息,请参阅

You can also use job cash:

 HttpContext.Current.Cache.Add("jobkey",  
                         "jobvalue", null,  
                         DateTime.MaxValue,  
                         TimeSpan.FromSeconds(15), // set the time interval  
                         CacheItemPriority.Default, JobCacheRemoved); 

For Details See this

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文