ragazzi ho fatto cosi e spedisc l email, soltanto che non mi vede l email avete presente outluk espress un po sopra del messaggio a meta, dove dice da: a: oggetto quella dove c e a : mi da la veriabbile $email io ho fatto cosi
Codice PHP:
$mail = new PHPMailer();

$mail->IsSMTP();                                      // set mailer to use SMTP
$mail->Host "";  // specify main and backup server
$mail->SMTPAuth false;     // turn on SMTP authentication
$mail->Username "";  // SMTP username
$mail->Password ""// SMTP password

$mail->From     "$email";
$mail->FromName "$email_register";
$mail->SetLanguage("it""../includes/language/");
$mail->AddAddress("$email""$nome");
//$mail->AddAddress("ellen@example.com");                  // name is optional
//$mail->AddReplyTo("$email", "Information");

$mail->WordWrap 50;                                 // set word wrap to 50 characters
//$mail->AddAttachment("/var/tmp/file.tar.gz");         // add attachments
//$mail->AddAttachment("/tmp/image.jpg", "new.jpg");    // optional name
$mail->IsHTML(true);                                  // set email format to HTML

$mail->Subject "Here is the subject";
$mail->Body    "This is the HTML message body [b]in вакпрнолгнкг5глгоьктртунл![/b]";
$mail->AltBody "This is the body in plain text for non-HTML mail clients";

if(!
$mail->Send())
{
   echo 
"Message could not be sent. 

"
;
   echo 
"Mailer Error: " $mail->ErrorInfo;
   exit;