Ciao a tutti,
non riesco a inserire nel sito la funzione per inviare newsletter a una mailing list ... inoltre non riesco neanche a inserire la possibilità di segnalare il sito ad un amico ...
AIUTOOOOO
Se vuoi questo e il codice per crearti la pagina segnala amico:
<table align="center" border="1">
<form name="modulo" action="segnala.asp" method="post">
<tr>
<td>Il tuo nome</td>
<td><input type="text" name="tuoNome"></td>
</tr>
<tr>
<td>Il nome del tuo amico</td>
<td><input type="text" name="nomeAmico"></td>
</tr>
<tr>
<td>La tua email</td>
<td><input type="text" name="tuaEmail"></td>
</tr>
<tr>
<td>L'email del tuo amico</td>
<td><input type="text" name="emailAmico"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Invia la segnalazione"></td>
</tr>
</form>
</table>
<%@Language = JScript%>
<%
var aa = new String(Request.Form("tuoNome"));
var bb = new String(Request.Form("nomeAmico"));
var cc = new String(Request.Form("tuaEmail"));
var dd = new String(Request.Form("emailAmico"));
var segnala = new ActiveXObject("CDONTS.NewMail");
segnala.From = cc;
segnala.To = dd;
segnala.Subject = "Segnalazione sito";
segnala.Body = "Ciao " + bb + ", il tuo amico " + aa + " ti segnala un sito: http://..";
segnala.Send();
%>
<html>
<head>
<title>Conferma invio</title>
</head>
<body>
<div align="center">Segnalazione inviala, grazie del supporto!</div>
</body>
</html>