Unity Plugin that allows sending emails from WebGL builds using the smtpjs.com API.
using UE.Email;
Email.SendEmail(from, to, subject, body, smtp, user, password);
Email.SendEmailToken(from, to, subject, body, token);
Use this class for easy HTML formating:
"This is " + HTML.Bold("bold") + " and this is " + HTML.Italic("italic") + "." + HTML.P +
"This is a new paragraph."