PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
707 B

<?
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // mandar via SMTP
$mail->Host = "mail.modeloiga.com.br"; // Seu servidor smtp
$mail->SMTPAuth = true; // smtp autenticado
$mail->Username = "olsena"; // usuário deste servidor smtp
$mail->Password = "olsen1906"; // senha
$mail->From = "olsena@modeloiga.com";
$mail->FromName = "Anhicolas";
$mail->AddAddress("olsena@modeloiga.com.br", "Anhicolas");
$mail->IsHTML(true); // send as HTML
$mail->Subject = "Teste";
$mail->Body = "Teste de envio";
if (!$mail->Send()) {
echo "A mensagem não pode ser enviada
";
echo "Erro: " . $mail->ErrorInfo;
exit;
}
echo "Mensagem enviada";
?>