通过 ASP.net Web 应用程序发送 (SMTP) 电子邮件的方法
就像条条大路通罗马一样,从 ASP.NET 应用程序发送电子邮件的方法也有很多种。仅使用 SMTP 协议时,存在哪些框架和库可以允许从 Web 应用程序发送电子邮件?
我对单一解决方案不感兴趣,但想要一个有用(或无用)替代方案的列表。但只有使用 SMTP 的替代方案,无论是否有额外的身份验证和/或 SSL。
Like there are many roads to Rome, there are also many ways to send an email from an ASP.NET application. When using just the SMTP protocol, which frameworks and libraries do exist that would allow sending emails from a web application?
I'm not interested in a single solution but would like a list of useful (or useless) alternatives. But only alternatives that use SMTP, with or without additional authentication and/or SSL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准的 System.Net.Mail 命名空间拥有从 ASP.NET 应用程序发送电子邮件所需的一切。有关详细信息,请查看 MSDN 文档。
有关更多详细信息和介绍,请参阅:
还有大量其他免费软件和商业库可用于发送邮件(只需咨询 Google 或 使用 Bing 谷歌搜索它) - 但通常情况下,除非您有非常具体/奇怪的需求,否则
System.Net.Mail
组件实际上应该很好。The standard
System.Net.Mail
namespace has all you need to send out e-mails from an ASP.NET application. Check the MSDN documentation for details.For further details and intros, see:
There's a gazillion of other, freeware and commercial, libraries for sending mails (just consult Google or google it with Bing) - but typically, unless you have very specific / odd needs,
System.Net.Mail
components should be just fine, really.