using System.Web.Mail; module M { Main () : void { def msg = MailMessage (); msg.To = "malekith@roke.freak"; msg.Subject = "trelele"; msg.From = "malekith@roke.freak"; msg.Body = "some body blah...."; msg.BodyEncoding = System.Text.Encoding.UTF8; SmtpMail.Send (msg) } }