Feedback code
I'm wondering if anyone can tell me which code should i write to get feedback from players to my email, and also feedback to include automatically phone OS, phone name, game version and name etc. (or if you don't know both tell me just how to receive feedback) @FortisVenaliter
Answer by FortisVenaliter · May 25, 2016 at 03:03 PM
I believe there are some third party packages that will allow you to easily send mail, but it's actually a really good (and not too difficult!) exercise to write your own mail client. You can use standard socket networking, and SMTP/POP3/IMAP all use text-based networking, so their commands and responses are really easy to parse. Also, that way, if you want to add additional features, you'll already know where to start. Wikipedia actually has a sample 'conversation' between an SMTP client and server to illustrate this. But you will need a mail server you can use to send the messages. Luckily, you can get those hosted online for as cheap as $100/yr.
You can write in the details of your game (name, version, etc.) yourself, and you'll want to check out the SystemInfo class for the rest.
Your answer

Follow this Question
Related Questions
No confirmation email after a week. Requested new email many times. 0 Answers
Send emails with inline images 2 Answers
(API level 26) or higher. 0 Answers