views:

552

answers:

2

I need to create a very simple c# Windows Service to listen for, and process email wth special subject lines. I already have the code that process these emails working well. For ease of development, I just packaged the code in an "Outlook Addin" on my own machine, running under my own email account. Works great.

Now that it's working, I need to move this to the server. I have a special email account setup on the Exchange Server for this purpose. I really don't want Outlook running on the server. Is there some other way to login to this email account and listen for email from my Windows Service without using the Outlook client?

Thanks!

A: 

If your exchange admin has enabled it you can use IMAP or POP3 to connect to the server.

You can also use MAPI to connect as well.

You can find a number of libraries (free and otherwise) for doing all three.

I have had good experience with MailBee IMAP but there are definitely free alternatives if you only need to do some simple functionality.

GrayWizardx
+1  A: 

It sounds like your code is closely tied to Outlook, so you may have to change your approach for the server. I faced exactly the same problem last year and considered the following options :

You also need to ask yourself - do you actually need your program to check the mail server? I couldnt use any of the above options so ended up having one of the mail admins set up an exchange rule that dropped the emails/attachments into a special folder on the server. I could then process the files at my leisure. Worked extremely well and much easier to maintain than directly interrogating the mail server through code.

Alex
+1 for Exchange Web Services
Alfred Myers