%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
Error processing SSI file
<%
' Smart Mailer 1.0.7
' Send on submit of form form1
if Request.ServerVariables("REQUEST_METHOD") = "POST" then
Server.ScriptTimeout = 300
Set sm1 = new SmartMailer
sm1.checkVersion "1.07"
sm1.contentCharset = "us-ascii"
Session.CodePage = sm1.getCodepage()
sm1.smtpSetup "mail.johnnyodesign.com", "2525", "jowen@johnnyodesign.com", "Sc00by"
sm1.pickup = ""
sm1.component = "cdo"
sm1.tmpFolder = ""
sm1.embedImages = false
sm1.progressBar = ""
sm1.ignore_errors = true
sm1.useQueue = false
sm1.setFrom "MCO Music", "postmaster@mcomusic.com"
sm1.setTo "MCO Music", Request.Form("to")
sm1.setCc Request.Form("name"), Request.Form("email")
sm1.setBcc "MCO Music Web Admin", "jowen@johnnyodesign.com"
sm1.Subject = "MCO Music Web Site Inquiry"
' using static for body
sm1.setBody_Static_html "
Dear " & (Request.Form("name")) & "," & vbCRLF & "Thank you for contacting MCO Music. A representative will get back with you momentarily." & vbCRLF & "" & vbCRLF & "The following information was submitted." & vbCRLF & "" & vbCRLF & "Name: " & (Request.Form("name")) & "" & vbCRLF & "Email: " & (Request.Form("email")) & "" & vbCRLF & "Phone: " & (Request.Form("phone")) & "" & vbCRLF & "URL: " & (Request.Form("url")) & "" & vbCRLF & "" & vbCRLF & "Comments: " & (Request.Form("comments")) & "
" ' Attachments none sm1.sendMail "one" Response.Redirect "thanks.asp" end if SM_mailAction = getMailAction() %>
|
|||||||||||||||||||||||||||
|