将电子邮件读入 ASP .Net 中的 SQL 数据库

发布于 2024-11-10 10:13:30 字数 508 浏览 4 评论 0原文

我读了这篇文章 .net 代码将电子邮件读入 SQL 数据库我想知道是否有免费的方法可以做到这一点。

我想在我的数据库中存储一些电子邮件。也许首先对它们进行解析,以便将链接的 URL 存储在数据库表中的不同字段中。

现在电子邮件将发送至我的 Gmail。我想到的一种方法是:

  1. 找到一个使用 POP3 连接到我的 Gmail 的电子邮件客户端
  2. 检索我的电子邮件并将其作为文本文件保存到我的本地驱动器上
  3. 定期运行本地 .Net 控制台/Windows 应用程序解析这些文本文件以提取数据
  4. 与 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:

  1. Find an email client which uses POP3 to connect to my Gmail
  2. Retrieve and save my emails onto my local drive as Text files
  3. Have a local .Net console/windows app run periodically to parse these text files to extract the data
  4. 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 技术交流群。

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

发布评论

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

评论(1

毁梦 2024-11-17 10:13:30

我建议使用免费的 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/

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