I am using the following script to upload files from a website:
<HTML>
<head>
</head>
<BODY BGCOLOR="#FFFFFF">
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("D:\webroot\FullTiltRoot\dplabs\clientftp")
%>
<% = Count %> files uploaded.
</BODY>
</HTML>
I would also like to generate an email when the form is submitted with name, phone number, and email address. Can this be done in the same script?
Thank you.
<HTML>
<head>
</head>
<BODY BGCOLOR="#FFFFFF">
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("D:\webroot\FullTiltRoot\dplabs\clientftp")
%>
<% = Count %> files uploaded.
</BODY>
</HTML>
I would also like to generate an email when the form is submitted with name, phone number, and email address. Can this be done in the same script?
Thank you.