Ron
12-03-2002, 11:53 PM
Does anyone know of a free ASP script for mailing forms? Preferably something that has some HTML on it for fields (name, email address, comments).
![]() | View Full Version : Looking for ASP Form Mailer Ron 12-03-2002, 11:53 PM Does anyone know of a free ASP script for mailing forms? Preferably something that has some HTML on it for fields (name, email address, comments). JonB 12-04-2002, 08:00 AM What mail components does your hosting service support? platinum 12-04-2002, 08:35 AM if you can use CDONTS, its very easy to whip one up, if you cen use that - it's basically straight forward! jmail is another one I have used, but I'm not sure about how that works serverside - I was just the monkey that used it ;) But anywho, if you can use CDONTS - its incredibly easy.. here's a great article on it: http://www.promotionbase.com/article/596 (funnily enough the author runs a hosting company too :p) TheGAME1264 12-04-2002, 06:49 PM http://www.4guysfromrolla.com/webtech/071599-1.shtml That should get you on your way as well. Ron 12-05-2002, 03:38 AM Thanks TheGAME1264, that was the first script I've even gotton to work the first time. Are you using this script? Do you know how to code it to make the fields mandatory? Otherwise the sender might click it without inputting their email. platinum 12-05-2002, 07:03 AM You can use a javascript checker, or when the resubmit the page, alert them :) if empty(emailaddress) response.write "enter your address, fool!" else send the email end if Something like that :) You might want to do some more checks to see if there is at least one . in the name, an @ something like that.. |