I am looking for an effective way to get user feedback from my WinForm application. I looked around and found only web solutions that require users to go to a web page and fill out forms.
I am looking for something that can be implemented in such a way that the user can open the WinForm dialog, fill in the appropriate fields and, if necessary, send the file along with it (in this case, the error log). I have seen many applications implement this, but I'm not sure how to do it.
The only way I can think of is to send an email from the app to my email address. The only problem with this is that I will need to hardcode some email credentials to send the email, but I feel this is a small security risk.
So my question is: are there any better methods for getting feedback from users without having to manually send me an email with feedback and attachment?
source share