unity发送邮件系统
支持 windows、android、ios
SmtpServer smtp = new SmtpServer('smtp.exmail.mail.com');
smtp.Timeout = 6000;
smtp.RequireAuthorization = true;
smtp.SetCredentials("[email protected]", "password");
MailMessage msg = new MailMessage("[email protected]", "[email protected]");
msg.Subject = "title";
msg.Body = "body";
smtp.ThreadSend(msg);