Hello frndz…
Can I get feedback from player through Email via my game ???
please help me as I want to upload lite version of my game…
and I want feedback from the player…
Please help asap.
Advance thanking you!!!
Hello frndz…
Can I get feedback from player through Email via my game ???
please help me as I want to upload lite version of my game…
and I want feedback from the player…
Please help asap.
Advance thanking you!!!
Sending email requires a SMTP server.
To avoid someone reading your user account and password for the mailserver, I think you should place the SMTP-server communication on a webserver and then call that through normal serverscript languages such as ASP.NET, PHP, JAVA or similar.
Once you have an URL like: http://www.mygamedomain.com/mail/send/
You can use the WWW class to POST data as a HTML-form. This is better than using GET as GET requests goes through the URL and can be tampered very easily.
So the architecture would be something like:
Unityplayer → WWW request → Send mail (serverscript)
You can find some email scripts already built to for this check out this link MailScript | Tools | Unity Asset Store
Not my script BTW just searched on the assets store for email.
Hope this helps