ciao
prova a fare queste correzioni
p.s.
usa php quando posti del codice
prova a fare queste correzioni
PHP:
<?php
//......
require_once 'phpmailer/class.phpmailer.php';
//require_once 'phpmailer/class.smtp.php';
//phpmailer
$mail = new PHPMailer();
//questa se è giusta o meno devi saperlo tu
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPAuth = "true"; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = "465"; // set the SMTP port for the GMAIL server
$mail->Username = "xxx4@gmail.com"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password
// poi prova a correggere
$mail->IsHTML(true);
$mail->SetFrom("no_replay@myserver.org");
$mail->Subject = "Attivazione account.";
$mail->CharSet = "UTF-8";
$mail->AddAddress($_POST['email']);//attento prima devi verificare se l'indirizzo è corretto
$mail->Body='Grazie di esserti iscritto. <a href="http://utenti/MegaLaboratorio/attivautente.php?email=' . $_POST['email']
.'">clicca qui per attivare</a></b> l\'account. Grazie.';//attento gli apostrofi sono apici
if(!$mail->Send()) {
echo "Errore nell'inviare l'email: " . $mail->ErrorInfo;
} else {
echo "Messaggio inviatro correttamente!";
}
//......
?>
p.s.
usa php quando posti del codice