Pessoal,
Estou tentando rodar meu sistema (local), e no momento que estou finalizando a compra, aclasse do PHPMailer não é localizada.
`Fatal error: Class ‘PHPMailer’ not found in C:\xampp\htdocs\lojavirtual\model\EnviarEmail.class.php on line 3
Esta é classe do PHPMailer:
> <?php
>
> class EnviarEmail extends PHPMailer {
>
>
> function __construct() {
>
> parent::__construct();
> parent::IsSMTP();
> parent::IsHTML(true);
> $this->CharSet = 'UTF-8';
> $this->SMTPDebug = 0;
> $this->Port = Config::EMAIL_PORTA;
> $this->Host = Config::EMAIL_HOST;
> $this->SMTPAuth = Config::EMAIL_SMTPAUTH;
> $this->FromName = Config::EMAIL_NOME;
> $this->From = Config::EMAIL_USER;
> $this->Username = Config::EMAIL_USER;
> $this->Password = Config::EMAIL_SENHA;
> }
> function Enviar($assunto, $msg, $destinatarios = array()) {
>
> $this->Subject = $assunto;
> $this->Body = $msg;
>
>
> foreach ($destinatarios as $email):
>
> $this->AddAddress($email, $email);
>
> endforeach;
>
> if (parent::Send()):
>
> $this->ClearAllRecipients();
>
> else:
> echo "<h4>Mailer Error: " . $this->ErrorInfo . "</h4>";
>
> endif;
> }
>
> }
Com esses dados, seria possível obter alguma ajuda?
Obrigado.