In order to improve our service and expectation for your company, please answer the questions below.
Our Directory will evaluate the result and they will proceed to execute the best to better serve your company.

   
  Your Name
  Your e-mail
   
  1) Are you satisfied with service offered by CHAMPION?
  Yes   No   Regular   Hardly   Do not use
  (Consider the quickness, cordiality, efficiency and resolution capacity, understanding of what was requested, patience to listen and to respond complaints, if the emails are being answered, if feedback is given when promised)
   
  2) Are we fulfilling the terms of collection and delivery?
  Yes   No   Regular   Hardly   Do not use
  (Consider the convenience and quickness in the entire process, from the collection to delivery)
   
  3) Does CHAMPION regards your billing requirements satisfactory?
  Yes   No   Regular   Hardly   Do not use
  (Does our team of Customer Service understand your requests?)

  4) Does our operations staff (service, pick up, delivery of materials) attend you well?
  Yes   No   Regular   Hardly   Do not use
  (Consider the quality of the service, personal presentation, uniforms, sympathy and willingness to help)
   
  5) Is the feedback given by our attendants satisfactory?
  Yes   No   Regular   Hardly   Do not use
  (Consider the quantity, quality and relevance of the information)
   
 
We appreciate if you could, briefly, give your opinion by answering the following questions:
  6) What bothers you the most in CHAMPION?
 
   
  7) What is the best in CHAMPION?
 
   
  8) What would you suggest to our CEO in order to improve our services?
 
   
  9) Would you recommend CHAMPION to a company of your trust? Give us a grade from 1 to 10.
 
   
  10) Any comments, observations, suggestions, complements, please use the space bellow.
 
   

SMTPDebug = 2; // Enable verbose debug output $mailer->isSMTP(); // Set mailer to use SMTP $mailer->SMTPOptions = array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ) ); if($_GET['acao'] == 'enviar'){ $nome = $_POST['nome']; $assunto = $_POST['assunto']; $mensagem = $_POST['mensagem']; $arquivo = $_FILES["arquivo"]; $mailer->Host = 'mail.championtransp.com.br'; $mailer->SMTPAuth = true; // Enable SMTP authentication $mailer->IsSMTP(); $mailer->isHTML(true); // Set email format to HTML $mailer->Port = 587; // Ativar condição utf-8, para acentuação $mailer->CharSet = 'UTF-8'; $mailer->Username = 'express@championtransp.com.br.br'; // SMTP username $mailer->Password = 'Champ162534**'; // SMTP password // email do destinatario $address = "diretoria@championtransp.com.br"; //$mailer->SMTPDebug = 1; $corpoMSG = "Nome: $nome
Mensagem: $mensagem"; $mailer->AddAddress($address, "destinatario"); $mailer->AddAddress("branux@gmail.com"); // 2º destinatário se querer enviar, se não, comente com // $mailer->From = 'express@championtransp.com.br.br'; $mailer->Sender = 'express@championtransp.com.br.br'; $mailer->FromName = "Cotação SITE CT 2"; // Seu nome // assunto da mensagem $mailer->Subject = $assunto; // corpo da mensagem $mailer->MsgHTML($corpoMSG); // anexar arquivo $mailer->AddAttachment($arquivo['tmp_name'], $arquivo['name'] ); if(!$mailer->Send()) { echo "Erro: " . $mailer->ErrorInfo; } else { echo "Mensagem enviada com sucesso!"; } } ?>