关于如何自动获取电子邮件附件 (.csv)、解析并插入 SQL DB 的想法?
我遇到的情况如下,我正在寻找有人可以提供有关如何处理它的任何帮助:
目前,我将 csv 文件上传到服务器,然后服务器解析它并将其内容插入到 SQL 数据库中。
我想要的是能够通过附加 csv 的电子邮件来触发相同类型的过程(即,将文件移动到服务器上的文件夹,解析并插入),
我目前正在使用 vbscript 在 ASP 中工作。我最初的猜测引导我走向 powershell 和计划任务。
有人有什么想法吗?
The case I have is the following and I'm looking for any help someone can give as to how to approach it:
Currently, I upload a csv file to the server, then the server parses it and insert its contents into an SQL database.
What I'd like is to be able for an email with the csv attached to trigger the same kind of process (ie. move the file to a folder on the server, parse and insert)
I'm currently working in ASP with vbscript. My initial guesses lead me towards powershell and scheduled tasks.
Does anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CloudMailin 等服务在 ASP.net 应用程序中接收电子邮件,并以与以前相同的方式处理它。或者,您可以设置一个任务来轮询消息,然后处理内容,但这显然会导致轮询延迟。
You could use a service like CloudMailin to receive the email at the ASP.net app and process it in the same way as before. Alternatively you could set up a task to poll for the message and then process the contents but this will obviously incur polling delays.