Boas, Sou novo no fórum e venho pedir ajuda, uma que tenho o seguinte formulário em html: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<script LANGUAGE="JavaScript">
<!--
<!-- Begin
function Check(chk)
{
if(document.newsletter.Check_ctr.checked==true){
for (i = 0; i < chk.length; i++)
chk[i].checked = true;
}else{
for (i = 0; i < chk.length; i++)
chk[i].checked = false;
}
}
// End -->
</script>
</head>
<form name="newsletter" action="" method="POST">
<input type="hidden" name="admin" value="user@servidor.com">
<input type=hidden name="subject" value="Newsletter">
<input type=hidden name="redirect" value="http://www.page_shown_after_submit.com">
Nome <input type="text" name="nome" size="30" maxlength="100">
E-mail <input type="text" name="email" size="30" maxlength="100" value="">
<br>
Sócio<input type="checkbox" name="tipo" value="Socio" >
Atleta<input type="checkbox" name="tipo" value="Atleta">
Simpatizante<input type="checkbox" name="tipo" value="Simpatizante">
<br>
<br>
<b>Áreas de Interesse:</b>
<br>
<br>
<input type="checkbox" name="check_list" value="1" />Atlantis Cup <br>
<input type="checkbox" name="check_list" value="2" />Botes Baleeiros <br>
<input type="checkbox" name="check_list" value="3" />Canoagem <br>
<input type="checkbox" name="check_list" value="4" />Cursos/Formação <br>
<input type="checkbox" name="check_list" value="5" />Escola de Vela <br>
<input type="checkbox" name="check_list" value="6" />Jet-Ski <br>
<input type="checkbox" name="check_list" value="7" />Match Racing <br>
<input type="checkbox" name="check_list" value="8" />Mergulho <br>
<input type="checkbox" name="check_list" value="9" /> Mini-veleiros<br>
<input type="checkbox" name="check_list" value="10" />Natação <br>
<input type="checkbox" name="check_list" value="11" />Pesca <br>
<input type="checkbox" name="check_list" value="12" />Remo <br>
<input type="checkbox" name="check_list" value="13" />Semana do Mar <br>
<input type="checkbox" name="check_list" value="14" />Surf <br>
<input type="checkbox" name="check_list" value="15" />Vela Cruzeiro <br>
<input type="checkbox" name="check_list" value="16" />Vela Ligeira <br>
<input type="checkbox" name="check_list" value="17" />Windsurf <br>
<input type="checkbox" name="check_list" value="18" />Xadrez <br>
<input type="checkbox" name="Check_ctr" value="yes"
onClick="Check(document.newsletter.check_list)">Tudo
<br>
<br>
<input type="submit" value="Enviar formulário"><input type="Reset" value="Apagar tudo">
</form>
<body>
</body>
</html> e queria enviar essa informação por email. Alguém me poderia dar uma ajuda? Obrigado pela atenção MiguelArmas