Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Sending a form without opening Outlook (default mail)


Message #1 by "Michaela Brandom" <lanmbran@h...> on Tue, 25 Sep 2001 09:50:15
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

  Return to Index