How to send e-mails?
Documentation is your friend:
http://www.phpbuilder.com/manual/function.mail.php
melmoth, i saw the documentation but i don't know how to apply the mail(). How to place it on the 'submit' event? rajni
Uh, the short answer is "you don't". Your submit button should call another php page which assembles the mail() function parameters from posted fields. The page would then call the mail() function:
$result=mail($to,$subj,$body,$otherheaders);
if u still don't know ask me!