I have written a small .net Windows Forms application. And now I decided to get opinions or comments from users. User will just write something in a input form and click a send button.
I want to use the most easiest way. I don’t want to host any webservices or another applications for gathering the information. Also I don’t have a database. Nothing. I just want to know what people think about the application.
How would you do it?
FWIW if you do go with the answers suggesting to just call out to a SMTP server remember that any application you develop in .NET if you don’t use some sort of security packaging framework all of the text that is stored inside the application is essentially the same as a text file. So if you embed your smtp server credentials inside your application it could be very easy to have them stolen.
I think the simplest solution for you would be to just put a hyperlink in your application to mailto:your@address.com?Subject=txtSubject.Text&Body=txtBody.Text and then let the users system handle the mailto operation by its default handler.