Scusami ma non essendo troppo esperto ti chiedo di spiegarmi un po' meglio... puoi farmi qualche esempio di server che non necessitano autenticazione... io ho provato con libero, gmail, tele2... ma niente mi venivano sempre errori di worning
Per essere più chiaro ti posto qui il materiale
codice html
<html>
<body>
<form method=post action=form.php>
Nome:<input type="text" name="nome">

Cognome:<input type="text" name="cognome">

<input type="submit"value="invio">

</form>
</body>
</html>
codice php
<?php
$mail="******@libero.it";
$oggetto="email";
$testo=$_POST['nome'];
$testa=$_POST['cognome'];
mail($mail,$oggetto,$testo,$testa);
?>

php.ini
[mail function]
; For Win32 only.
SMTP = mail.libero.it
smtp_port = 25


; For Win32 only.
sendmail_from = "me@localhost.it"


; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =

Help!!!!!