如何使用 C# 发送预定的电子邮件警报?

发布于 2024-12-13 02:53:35 字数 176 浏览 1 评论 0原文

我需要向用户发送电子邮件通知,为此,用户插入一个日期,该日期存储在数据库(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 技术交流群。

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

发布评论

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

评论(2

薄凉少年不暖心 2024-12-20 02:53:35

您可以创建能够从数据库获取用户详细信息和通知日期并发送通知邮件的控制台应用程序。

您可以使用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.

e.g. Run this scheduled task on every day on given time. your
application will send mails to users if any notifications need to be
sent on that day.

往事随风而去 2024-12-20 02:53:35

查看使用 System.Net.Mail 命名空间来处理 .NET 生成的邮件:

MailMessage Message = new MailMessage();

Message.Sender = new MailAddress(OutgoingEmailAddress, OutgoingEmailDisplayName);
Message.From = new MailAddress(OutgoingEmailAddress, OutgoingEmailDisplayName);
Message.Subject = "The subject of your email";
Message.Priority = MailPriority.High;

// Add Recipients                    
foreach (string Email in (SuccessRecipientList.Split(';')))
     Message.To.Add(Email);

// Set Body                
Message.Body = Body;

// Send the Email
SmtpClient EmailClient = new SmtpClient("smtpServerNameHere");
EmailClient.Send(Message);

Look at using the System.Net.Mail namespace for .NET generated mail:

MailMessage Message = new MailMessage();

Message.Sender = new MailAddress(OutgoingEmailAddress, OutgoingEmailDisplayName);
Message.From = new MailAddress(OutgoingEmailAddress, OutgoingEmailDisplayName);
Message.Subject = "The subject of your email";
Message.Priority = MailPriority.High;

// Add Recipients                    
foreach (string Email in (SuccessRecipientList.Split(';')))
     Message.To.Add(Email);

// Set Body                
Message.Body = Body;

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