5

Does anyone know of a free, anonymous smtp service? I want to give users of my app the ability to occasionally send me an anon email without having to configure a server of enter their email account. I guess I could setup a gmail account for this purpose and embed the credentials in the app but I hope it won't be necessary. In case it sways your answer, this is a thick client (.NET Console) app.

Paul Alexander
  • 31,970
  • 14
  • 96
  • 151
James Cadd
  • 12,136
  • 30
  • 85
  • 134
  • Mark was suggesting that your application should communicate with you by interacting with your web site, e.g. to POST something to your web site ... to don't need to be a browser to generate HTTP traffic. Then if actually really need email, you can send email from your web site's back end. You'd hard-code your web site URL into your client. – ChrisW Jun 29 '09 at 01:58
  • Chris, thanks for wording my idea more clearly than I did :) – Mark Rushakoff Jun 29 '09 at 02:07
  • Thanks for clarifying - and yes that sounds like a good option too! – James Cadd Jun 29 '09 at 13:28

4 Answers4

9

I think that what you're asking for is called an open relay.

ChrisW
  • 54,973
  • 13
  • 116
  • 224
6

If there were such a thing, wouldn't it immediately be swamped by spammers?

Jacob Mattison
  • 50,258
  • 9
  • 107
  • 126
2

You might be better off setting up some kind of commenting tool on your website, that sends you an email with the contents of whatever form the user submits. Then if you go that far, it shouldn't be difficult to add a form to your app that automatically makes the full HTTP request (transparent to the user, in the background).

Mark Rushakoff
  • 249,864
  • 45
  • 407
  • 398
2

If you run your own mail server, you can simply configure the app to deliver mail directly to it. Many web hosting companies also provide mail hosting if you don't want to run it on your own hardware. Gmail via Google Apps for your domain might be an option. It's free. But their anti-spam measures might prevent delivery. Better to have a server you can control, I think. Bottom line, though, is you don't need an anonymous SMTP relay server to get the job done.

Rob H
  • 14,502
  • 8
  • 42
  • 45