PHPMailer Error include

0

I'm having a problem with the PHPMailer class. You are giving a include error. Could someone tell me the reason for the error?

PHPcode:

<?php//Variaveisquevãoserenviadas$nome=$_POST['nome'];$txttelefone=$_POST['txttelefone'];$email=$_POST['email'];$mensagem=$_POST['mensagem'];//IncluiosArquivosrequire("PHPMailer/class.phpmailer.php");PHPMailer/

//Inicia a classe 
$mail = new PHPmailer ();


//Dados de envio
$mail->IsSMTP();
$email->Port = 587;
$mail->Host = "smtp.umbler.com";
$mail->SMTPAuth = true;
$mail->Username = 'alfatecteste-com-br';
$mail->Password = 'lj;f.C;/ACNIm@=';

//Remetente
$mail->From = "[email protected]";
$mail->FromName = "ADM";

//Destinatario
$mail->AddAddress ($email,$nome);
$mail->AddCC('[email protected]', 'Eu');

//envio em html 
$mail->IsHTML(true);

//Define a mensagem (Assunto)
$mail->Subject = "Mensagem do site";
$mail->Body = $mensagem;

//Envia o email
$enviar = $mail->Send();

//mensagem de resultado
if($enviar){
    alert('Obrigado(a)  ' + nome.value +' os seus dados foram encaminhados com sucesso');

}   else {
    alert('E-mail não Enviado !');

}



?>  

HTML code:

<form name="meu_form"  action="enviar.php"  method="post" name="form" >


                    <h1>Entre em contato</h1>

                    <p class="nome">
                        <input type="text" id="nomeid" placeholder="Nome Completo"  required="required" name="nome" />
                    </p>

                    <p class="fone">
                        <input type="tel" name="txttelefone" id="txttelefone" pattern="\([0-9]{2}\)[\s][0-9]{4}-[0-9]{4,5}"                                             placeholder="Telefone" required="required" />
                        <script type="text/javascript"> $("#txttelefone").mask("(00) 0000-00000");</script>          
                    </p>

                    <p class="email">
                       <input type="email"  id="email" value="" name="email" required="required" placeholder="Digite Seu E-mail"/>
                    </p>

                    <p>
                       <textarea placeholder="Deixe sua Mensagem" required="required" name="mensagem"></textarea>
                    </p>

                    <p class="submit">
                        <input type="submit" onclick="Enviar();" value="Enviar" name="enviar" />
                    </p>

            </form>
    
asked by anonymous 06.07.2017 / 21:55

1 answer

0

You have an error on this line:

// Includes the Files require ("PHPMailer / class.phpmailer.php"); PHPMailer /

Remove this: PHPMailer /

    
06.07.2017 / 22:04