PDA

View Full Version : Mail with cgi under ASP?


gorilla1
05-30-2003, 06:36 PM
I am using ASP, but need to run a cgi sript that does an email. Is there a way to do send of mail using cgi under ASP, or can I call an asp script to do the actual mail send?

G

Spudhead
06-02-2003, 09:53 AM
You can send mail in ASP using a server-side mail component like CDONTS.

khillabolt
06-04-2003, 06:45 PM
I might be over-simplifying things, but does your CGI script accept a FORM post?


<form action="myemailcgi.cgi">
<input type="text" name="Text" value="">
<input name="Submit" value ="Submit" type="Submit">
</form>

If not, you may have to look at other options...