How to send an email from inside application in Unity?
![首圖](https://contentparty.org/images/c_review.jpg)
private MailMessage mail = new MailMessage();void SendEmails(){ mail.From = new MailAddress("GIVE_YOUR_EMAIL_HERE"); mail.To.Add("GIVE_YOUR_DESTINATION_HERE"); SmtpClient smtpServer = n......
private MailMessage mail = new MailMessage();void SendEmails(){ mail.From = new MailAddress("GIVE_YOUR_EMAIL_HERE"); mail.To.Add("GIVE_YOUR_DESTINATION_HERE"); SmtpClient smtpServer = n......