Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anonymous SMTP Service

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.

like image 248
James Cadd Avatar asked Jun 28 '09 23:06

James Cadd


People also ask

What is an anonymous SMTP server?

By using an anonymous SMTP service, the sender's identity remains hidden, along with any other potentially identifiable characteristics of a message. Anonymous SMTP service blocks IP addresses. Computers connected to the Internet are assigned an Internet Protocol (IP) address by their network service provider.

Is there a free SMTP server?

Google's free SMTP service is reliable and offers great email deliverability for Gmail users, so your emails won't end up in the spam folder. Pricing: Google offers its free SMTP server solution for a 14-day trial period.

Is Google SMTP free?

The SMTP server for Gmail is a free SMTP server that anyone across the globe can use. It allows you to manage email transactions from your Gmail account via email clients or web applications.

Is there a public SMTP server?

There's a wide range of public, free SMTP servers that can be set up on a mail client to deliver your emails – Gmail's own portable SMTP server being probably the most popular.


3 Answers

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

like image 136
ChrisW Avatar answered Sep 27 '22 21:09

ChrisW


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

like image 22
Jacob Mattison Avatar answered Sep 27 '22 22:09

Jacob Mattison


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).

like image 21
Mark Rushakoff Avatar answered Sep 27 '22 22:09

Mark Rushakoff