Click here to Skip to main content
15,881,413 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi guys,

I need to create an application (backgroundapplication on Windows) for an automatic eMail administration for my private sports club.

What it should be able to do:
The application should run in the background on Windows, if I get a new eMail (e.g. on gmail) the application should copy the eMailadress of the sender and the subject of the eMail and save those information in a txt-File(create a new file or attend to an existing one).

Q1: Does anyone know an existing project which is able to do?
Q2: Does anyone have an idea for realization?

Thanks for helping & best regards

CodeHablo
Posted

Why? There are plenty of email applications already that will do this for you. Try Thunderbird for one, it can manage multiple email accounts and control where messages are saved.
 
Share this answer
 
You need a windows service that periodically checks your email account using a pop3 component (or imap which is more advanced). Google for how to write a scheduling windows service and google for asp.net pop3 components and you'll find examples of how to do both. Just put them together, have your service periodically check for new messages, read the data and create the files.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900