SMTP.Initialize("smtp.outlook.com", 587 ,"example@hotmail.com" , "password", "Mailer")
Dim M As Map
M.Initialize
M.Put("Content-Type", "text/html; charset=utf-8")
M.Put("Content-Transfer-Encoding", "7bit")
smtp.AdditionalHeaders = M
smtp.StartTLSMode = True
smtp.UseSSL = True
smtp.Sender = "<" & "example@hotmail.com" & ">
smtp.To.Add("destination@to.go")
smtp.Subject = $"Test $date{DateTime.Now} - $time{DateTime.Now}"$
smtp.HtmlBody = True
' smtp.Body = "This is the body text of the email"
' smtp.Body = File.ReadString(File.DirApp,"test1b.html")
smtp.Body = CreateHtmlBody
Dim trustall As...