Skip to content

zhl006006/unity-mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unity-mail

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);

About

unity发送邮件系统

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages