Scheduled Mail in asp.net

前端 未结 5 620
渐次进展
渐次进展 2021-01-25 07:54

Hai Guys, My application deals scheduled mail concept (i.e) every morning 6.00 am my users gets a remainder mail about their activities for the day... I dont know how t

5条回答
  •  一生所求
    2021-01-25 08:18

    You can't really do this with ASP.Net. ASP.Net is for web pages - which are reactive to HTTP requests.

    You need a scheduled task or a service. All a website can do is respond to requests. I guess you could program the functionality into a web page and have a remote process request the page every morning - but what happens if someone else requests the page?

提交回复
热议问题