Hi guys,

I'm having a problem. I'd like to work with components and ASP. Take a look at
[L=http://www.tech-nomade.com/lab/formulaire.swf]http://www.tech-nomade.com/lab/
formulaire.swf[/L] so that's my form and I can't get it work. I mean I want my
customers to fill that out and once they're done, they click ENVOYER
which means SEND and I want the form to send me an e-mail by using an
ASP page. Here's a look at my ASP code...

<%
strName = "Ti-Rick"
strEmail = "info@tech-nomade.com"

strSubject = "TEST = Tech-Nomade"
strBody = "HELLO"

Set Mailer = Server.CreateObject("JMail.SMTPMail")
Mailer.RemoteHost = "mail.tech-nomade.com"
Mailer.FromName = FIRSTNAME
Mailer.FromAddress = EMAIL
Mailer.AddRecipient strName, strEmail
Mailer.Subject = (strSubject)
Mailer.BodyText = strBody
%>