I'm trying to get this form i've created in flash to work.
I need to know if my server supports SMTPsvg.Mailer
how do I find out?
I'm not the IT guru, just a Flash Designer trying to get this form to work.
I'm trying to use this ASP file
1) <%
2) FirstName = Request.form("FirstName")
3) Email = Request.form("Email")
4) Company = Request.form("Company")
5) ToComments = Request.form("ToComments")
6) HearAbout = Request.form("HearAbout")
7) strName = "Your Name"
8) strEmail = "
[email protected]"
9) strSubject = "Tutorial Request Example Email"
10) strBody = ToComments & HearAbout & Company
11) Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
12) Mailer.RemoteHost = "mail.innerhost.com"
13) Mailer.FromName = FirstName
14) Mailer.FromAddress = Email
15) Mailer.AddRecipient strName, strEmail
16) Mailer.Subject = (strSubject)
17) Mailer.BodyText = strBody
18) if Mailer.SendMail then
19) Response.Write "_root.Mail.EmailStatus=Complete - Your mail has been sent"
else
20) Response.Write "_root.Mail.EmailStatus=Failure - Your mail was not sent - errors"
21) Response.Write Mailer.Response
22) end if
23) %>
any help would be greatly appreciated