将电子邮件读入 ASP .Net 中的 SQL 数据库
我读了这篇文章 .net 代码将电子邮件读入 SQL 数据库我想知道是否有免费的方法可以做到这一点。
我想在我的数据库中存储一些电子邮件。也许首先对它们进行解析,以便将链接的 URL 存储在数据库表中的不同字段中。
现在电子邮件将发送至我的 Gmail。我想到的一种方法是:
- 找到一个使用 POP3 连接到我的 Gmail 的电子邮件客户端
- 检索我的电子邮件并将其作为文本文件保存到我的本地驱动器上
- 定期运行本地 .Net 控制台/Windows 应用程序解析这些文本文件以提取数据
- 与 ASP .Net Web 服务的接口以转发数据并将其保存到我的生产数据库中。
这是一个很好的免费方法吗?是否有这样的电子邮件客户端将电子邮件保存为本地驱动器上的文本文件?
I read this post
.net code to read email into a sql database and I was wondering if there is a FREE way to do this.
I would like to store some emails on my database. Perhaps having them parsed first so that the URL of the links are stored in a different field in the database table.
Right now the emails are going to my Gmail. One way I'm thinking is that it may be possible to:
- Find an email client which uses POP3 to connect to my Gmail
- Retrieve and save my emails onto my local drive as Text files
- Have a local .Net console/windows app run periodically to parse these text files to extract the data
- Interface with an ASP .Net Web Service to forward the data and save it onto my production database.
Is this a good FREE method? Is there such an email client which saves email as text files on the local drive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用免费的 Lumisoft POP3Client 或 IMAPClient 库。
http://www .lumisoft.ee/lswww/download/downloads/Net/Help/html/4c15101c-f077-b8bf-84d7-7acae59394a4.htm
http://www.lumisoft.ee/lswww/download/downloads/Net/Help/html/3a016d21 -18f9-ba83-631f-05a1040fa345.htm
我一直在生产代码中使用它们,我强烈推荐它,因为它比 .NET 的可配置性要高得多。
开源用法示例:
http://imapclientlumisoft.codeplex.com/
I recommend using free Lumisoft POP3Client, or IMAPClient library.
http://www.lumisoft.ee/lswww/download/downloads/Net/Help/html/4c15101c-f077-b8bf-84d7-7acae59394a4.htm
http://www.lumisoft.ee/lswww/download/downloads/Net/Help/html/3a016d21-18f9-ba83-631f-05a1040fa345.htm
I've been using these in the production code and I strongly recommend it because its far more configurable than .NET ones.
Sample open-source usage:
http://imapclientlumisoft.codeplex.com/