I need to make a feedback form in flash and did get this code from my provider. Can anyone help me on how to implement this in flash? Thank you.
Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.ServerAddress = "smtp.cliche.se"
JMail.Sender = "user@domain.se"
JMail.Subject = "Test"
JMail.AddRecipient "user@domain.se"
JMail.Body = "Exempel på JMail" & VbCrLf & VbCrLf
JMail.Body = JMail.Body & "Med vänlig hälsning ..."
' 1 - highest priority (Urgent)
' 3 - normal
' 5 - lowest
JMail.Priority = 1
JMail.Execute
Set JMail = Nothing