<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> Untitled Document <% if request.form("btsubmit")>"" then body="" For Each sItem In Request.Form body= body & "" Next body=body & "
" & (sItem) & "" & request.form(sItem) & "
" Set mailer = Server.CreateObject("SoftArtisans.SMTPMail") strVer = Mailer.Version mailer.RemoteHost ="localhost" mailer.FromAddress = Request.form("Email") mailer.AddRecipient "", "Cynthia@weddingsbycynthia.com" 'mailer.AddbCC "", "mel@mdparish.com" mailer.contenttype = "text/html" mailer.HTMLText=body mailer.Subject = "Website Feedback" mailer.sendmail response.redirect "http://www.weddingsbycynthia.com/thankyou.htm" end if %>