Hello to everyone in this forum.
I have this ASP form for my SEND MAIL form in Flash.
…
<%
Set Mailer = Server.CreateObject(“SMTPsvg.Mailer”)
Mailer.RemoteHost = “mail.host.com”
Mailer.FromName = “Webserver”
Mailer.FromAddress = “webserver@host.com”
Mailer.AddRecipient “Your name”, “webmaster@host.com”
Mailer.Subject = “New Mail…!”
strMsgHeader = “Form Information Follows: " & vbCrLf
for i = 1 to Request.Form.Count
strMsgInfo = strMsgInfo & Request.Form.Key(i) & " - " & Request.Form.Item(i) & vbCrLf
next
strMsgFooter = vbCrLf & “End of form information”
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
if not Mailer.SendMail then
Response.Write " Mailing Failed… Error is: <br>”
Response.Write Mailer.Response
else
Response.Redirect “http://www.host.com”
end if
%>
…
The values of RemoteHost, FromAddress, FromName, AddRecipient, Redirect are examples.
My question is how to insert the variable names of my send mail form in Flash to this ASP script, so it can read the values of the variables.
The text fields on the Falsh form are:
name
phone
email
message
I’ll appreciate any help.
Thanks