AspEmail

O

Orlando Gondar

Hi folks, I just got a contract with a new Hosting Company.

Now this is a windows server ( 2003 )

Do you folks know where I can get information on how to do a
Form Handler using AspEmail ?

I forner host was UNIX and they used SendMail.

This server also uses Formail.

Thanks, I am dead now, looking for info.
 
J

Jon

Hi,
you should be able to find something on their website
www.aspemail.com
as you're on 2003 you would also have cdo available
http://www.aspfaq.com/show.asp?id=2026

Both do the same job - it's personal preference which you use. Whatever mail
component you use the concept would be
<%
if request.form <> "" then
' form submitted
' build body from form fields
for i = 1 to request.form.count
strBody = strBody & request.form.key(i) & " = " & request.form.item(i) &
vbcrlf
next
' now we have the form data send the email
else
%>
<form....
....your form fields
</form>
<%end if%>

Jon
Microsoft MVP - FP
 
O

Orlando Gondar

Thanks for, I downloaded the ASPEmail, I also have some Perl Scripts, that
now that in a windows
server, dont have to worry abour cr/lf and end of lines.

I hardly know just a little bit of Pearl becasue my previous UNIX Server,
almost nothing

About cdoms, I dont think they have that...... Acomhosting.com

They only give you a 8 gigs Bandwidth, so I dont know if this was a good
move :(

Will see.....
 
Top