<?php
# Metto i miei commenti con '#' almeno li riconosci da quelli della classe che, oltre ad essere scritti in inglese iniziano con '//'
require_once("connetti.php");#Non so a cosa serva e lo lascio
require_once ('phpmailer/class.phpmailer.php');# Questo serve e scaricalo da http://sourceforge.net/projects/phpmailer/files/latest/download
require_once("'phpmailer/class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
# Qui metti il server smtp di gmail, lo ho rimesso sotto e quindi può rimanere così
#$mail->Host = "mail.yourdomain.com"; // SMTP server
#Qui c'è il debug dell'smtp, se metti un commento non stampa diavolerie, ma è utile in fase di test per capire la natura di qualche errore
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
# Con gmail deve essere impostata così
$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
# Username gmail la devi impostare tu
$mail->Username = "[email protected]"; // GMAIL username
# Password gmail la devi impostare tu
$mail->Password = "yourpassword"; // GMAIL password
# Qui ci va la tua mail e il tuo nome e cognome, questi devono essere identici a meno che non vuoi che si risponda ad un altro indirizzo
$mail->SetFrom('[email protected]', 'First Last');
$mail->AddReplyTo("[email protected]","First Last");
# L'oggetto della mail
$mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";
# Il messaggio della meil se il client non legge l'html, visto che oggigiorno non è praticamente possibile si può commentare la riga e vivere felici
#$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
# Il testo della mail scritta in html o senza
$mail->MsgHTML('Il mio messaggio in html <b>Messaggio in grassetto</b>');
# Destinatario della mail e il suo nome
$mail->AddAddress('[email protected]', "John Doe");
# Eventualmente qualche allegato
#$mail->AddAttachment("images/phpmailer.gif"); // attachment
#$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
# Se la mail viene inviata stampa il successo, altrimenti l'errore. In fase produttiva potresti creare un file di log dove stampa l'errore
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>