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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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. |
|||
|
|
|
For C# Version you can use: http://www.codeproject.com/KB/vista/SMTP_POP3_IMAP_server.aspx |
|||
|
|