English 中文(简体)
用于电子邮件处理平台的设置
原标题:Which setup to use for email handling platform

我的目标是建立一个系统,让每个用户都有一个电子邮件地址,可以转发电子邮件。 从这些电子邮件中,系统应该使用:主题、日期、收件人、文本。这个数据应该输入数据库,每个邮件和用户都有独特的身份证。

现在我知道这听起来并不那么复杂,但我想知道要使用哪一种程序语言。 我还想知道如何托管电子邮件,因为电子邮件地址会很多,而且当新的电子邮件出现时,应该有一些工作可以进行检测。

希望你们中的一些人能给我一些建议,让我研究一下。 我希望这个问题不是太笼统,我尽力做到具体,非常感谢所有的投入。

Thanks, Vincent

最佳回答

基本上你需要三个组成部分

  1. A Mail Server (to receive the emails) Look at MS Exchange (Windows) or Postfix (Linux) as examples
  2. Some code to parse the incoming emails, you could use almost anything to do this
  3. A database, look at SQL Server, My SQL as examples

你的问题有点过于宽泛,可以提供更具体的建议

问题回答

暂无回答




相关问题
Correct place to install demostration projects?

With the new Windows 7 restrictions (well, new to Windows Vista anyways), we can no longer install demo projects to %ProgramFilesFolder%OurApplicationdemo since restricted users will not be able to ...

.deb package conffiles problem

I am distributing one of my applications using a .deb package, but have a problem relating to one of the files. The distribution includes a database file which is constantly updated by the app, on a ...

Closing an application using WiX

In creating my WiX installer I have run into an issue when trying to close an application before installing the upgrade. Below is an example of how I am attempting to do this. <util:...

VS 2005 Setup - HKCU

I am trying to fix an existing application that uses a Visual Studio 2005 setup project. We are requiring it to work on limited user accounts for XP, our app is written in C# for .Net 2.0. It writes ...

Do I want Publish or Release Build in VB.net?

I wrote a little (like 40 lines little) Winforms application with VB.net in Visual Studio 2010. Now I ve released the code as a Google Code project. It s easy for a developer to get the source but I d ...

configsource and installer

I have an project csproj, with app.config file, and logging Ent.Library section using configsource attribute. The logging section is in ahother file Configloggingconfiguration.config. I have a ...

热门标签