| HOME | MISSÃO, VISÃO E VALORES | SERVIÇOS | PRINCIPAIS CLIENTES | LOCALIZAÇÃO | CONTATO
Preencha o formulário abaixo ou envie seu e-mail para usilini@usilini.com.br
 
       
 

Empresa :
Nome :
e-mail :
Telefone :
Conteúdo :
 
 
   
       
 
 
   
     
     
     
     
     
     
Sales Tecnologia - Sites e softwares personalizados IsSMTP(); // telling the class to use SMTP $mail->Host = $Host; // SMTP server $mail->SMTPDebug = 0; // enables SMTP debug information (for testing) // 1 = errors and messages // 2 = messages only $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = $Port; // set the SMTP port for the service server $mail->Username = $Username; // account username $mail->Password = $Password; // account password $mail->SetFrom($usuario, $nomeDestinatario); $mail->Subject = $Subject; $mail->MsgHTML($body); $mail->AddAddress($To, ""); if(!$mail->Send()) { $mensagemRetorno = 'Erro ao enviar e-mail: '. print($mail->ErrorInfo); } else { $mensagemRetorno = 'E-mail enviado com sucesso!'; } } ?>