Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to collect user opinions about software

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?

like image 617
Alexander G Avatar asked Apr 19 '10 12:04

Alexander G


2 Answers

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:[email protected]?Subject=txtSubject.Text&Body=txtBody.Text and then let the users system handle the mailto operation by its default handler.

like image 51
Chris Marisic Avatar answered Oct 07 '22 00:10

Chris Marisic


The easiest option would be to send an email. Check out the System.Net.Mail.SmtpClient class.

like image 2
Adam Robinson Avatar answered Oct 07 '22 00:10

Adam Robinson