The code I have is the following:
require_once ( 'class.phpmailer.php' );
$Mail = new PHPMailer();
$Mail->IsSMTP();
$Mail->Host = ""; // O QUE COLOCAR AQUI??
$Mail->SMTPDebug = 0; // 2 to enable SMTP debug information
$Mail->SMTPAuth = TRUE;
$Mail->SMTPSecure = "ssl";
$Mail->Port = 465;
$Mail->Username = '[email protected]';
$Mail->Password = 'minhapass';
$Mail->Priority = 1; // Highest priority - Email priority (1 = High, 3 = Normal, 5 = low)
$Mail->ContentType = 'text/html; charset=utf-8\r\n';
$Mail->From = '[email protected]';
$Mail->AddAdress = ('[email protected]');
$Mail->WordWrap = 900; // RFC 2822 Compliant for Max 998 characters per line
$Mail->isHTML( TRUE );
$Mail->SMTPDebug = 1;
$Mail->Body = "corpo";
$Mail->AddAddress("[email protected]"); // To:
$Mail->Send();
Thank you