Hi
I'm completely new to asp script and it makes no-sense at all to me.
I'd like to use a flash swf at http://www.pizzapal.co.uk on its contacts page.
Sending email and comments to comments@pizzapal.co.uk.
The FLA's action script is O.K when "check syntax" tested, so guess it must be the asp script.
Can anyone look through the script and indentify the possible brackets which need filling and any other possible errors please?
For a start, I do not know what to fill .From = " " with?
<%
sch = "http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "intmail"
.update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = " "
.To = "comments@pizzapal.co.uk"
.Subject = "13.31"
.TextBody = "This is the Email Body"
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>
Thank you to all of you for taking the time to read this post.
Sabby76