HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SGroot/sylviastotalcare.nl/wwwroot/formtomail.asp
<% 
For Each x In Request.Form 
message = message & x & ": " & Request.Form(x) & CHR(10) 
Next 
set smtp=Server.CreateObject("Bamboo.SMTP") 
smtp.Server="localhost" 
smtp.Rcpt="m.padding@gmail.com" 
smtp.From="lotte.padding@gmail.com" 
smtp.FromName="request.form("naam")" 
smtp.Subject="Response to my form" 
smtp.Message = message 
on error resume next 
smtp.Send 
 if err then 
response.Write err.Description 
else 
Response.redirect ("http://www.sylviastotalcare.nl/index_test.html") 
end if 
set smtp = Nothing 
%>