Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have developed a simple application to send emails(newsletters) to a given list of recipients which is in a excel file. I use gmail as the SMTP client but GMail does not allow sending many emails. Is there any application or a virtual mail server that I can install in my PC and send emails without any limit?

share|improve this question
Yes: an smtp-server? Its included (or at least selectable in the setup) of the IIS-Server. – MADMap Oct 27 '11 at 14:37
possible duplicate of Sending email in .NET through Gmail – jrummell Oct 27 '11 at 14:50

2 Answers

You can install Apache James for such purposes. This is a Java based mail server and quite robust. I have been using this to send 1000s of emails in a day and another few hundreds with attachments.

But you should note that you will need a static ip address on your PC for doing this. Also make sure you protect your mail server from being accessed by any other relay servers or clients apart from your PC.

You can do this either via james configuration or via firewall. Otherwise your server might be listed in the spammer list.

share|improve this answer

For C# Version you can use: http://www.codeproject.com/KB/vista/SMTP_POP3_IMAP_server.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.