You could also use PHP:
<?php
foreach($HTTP_POST_VARS as $key => $value)
{
$content .= "$key: $value";
}
mail("your@e...", "Subject Line", $content);
?>
That would do it for you.
Jason Lotito
> -----Original Message-----
> From: Michaela Brandom [mailto:lanmbran@h...]
> Sent: Tuesday, September 25, 2001 9:50 AM
> To: HTML Code Clinic
> Subject: [html_code_clinic] Sending a form without opening
> Outlook (default mail)
>
>
> Hi,
>
> How is it possible to send form information to an e-mail
> address without
> using "mailto" which opens Outlook? I don't really want to
> use CGI script
> either, HTML or ASP suggestions would be great - if anyone has any,
> otherwise I'll learn what I have to. Could anyone point me in
> the right
> direction, please?
>
> Michaela