如何使用 C# 发送预定的电子邮件警报?
我需要向用户发送电子邮件通知,为此,用户插入一个日期,该日期存储在数据库(MS SQL)中,然后我的应用程序应该在此日期发送电子邮件警报,我该怎么做..?
我读过有关 Windows 服务的内容,我尝试做一个,但不起作用,任何人都可以帮助我......?
我正在使用 asp.net、c# 和 MVC 模型
I need to send emails notifications to the users, for this the user insert a date, this is stored in a Data Base (MS SQL) then my app should send an email alert in this date, how can I do this..??
I have read about windows services, and I tried to do one, but doesn't work, anybody can help me...??
I´m using asp.net, c# and MVC model
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建能够从数据库获取用户详细信息和通知日期并发送通知邮件的控制台应用程序。
您可以使用Windows计划任务来运行此
exe
文件。you can create console application which capable of fetching user details and notification date from the database and send notification mails.
You can use windows scheduled task to run this
exe
file.查看使用 System.Net.Mail 命名空间来处理 .NET 生成的邮件:
Look at using the System.Net.Mail namespace for .NET generated mail: