% set msg= Server.CreateObject("JMail.Message") msg.From = "setup@ad-ons.com" msg.FromName = Request.ServerVariables("REMOTE_ADDR") msg.AddRecipient "ad-ons@chiptools.com" msg.Subject = "SnappyWindows Download" msg.Body = Request.ServerVariables("HTTP_REFERER") if not msg.Send("mail.ad-ons.com" ) then 'This message is displayed if an error occurs Response.write "An error occurred. Please contact the webmaster of this site." else response.redirect "setup.exe" end if %>