<?php
//Cabeceras
date_default_timezone_set('America/Bogota');
header('content-type: application/json; charset=utf-8');
require("class.phpmailer.php");
require("class.smtp.php");
$nombre=$_POST['nombre'];
$tipo_sol=$_POST['tipo_sol'];
$correo_electronico=$_POST['correo_electronico'];
$area_sol=$_POST['area_sol'];
$fecha_sol=$_POST['fecha_sol'];
$justificacion=$_POST['justificacion'];
$descripcion=$_POST['descripcion'];
$telefono=$_POST['telefono'];
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->SMTPKeepAlive = true;
$mail->SMTPSecure = "tls";
$mail->SMTPDebug = 0;
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->Username = "info3214@gmail.com";
$mail->Password = "123456";
$mail->SetFrom('info@scv.edu.co', utf8_decode('Sistema de Gestion de Calidad'));
$mail->Subject = utf8_decode("PQRSF");
$mail->AltBody = "";
$html = "<!DOCTYPE html>";
$html .= "<html>";
$html .= "<head>";
$html .= "<title>PQRSF</title>";
$html .= "<meta charset='UTF-8'>";
$html .="</head>";
$html .="<body>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Nombre del Solicitante</p>';
$html .="<p>$nombre.</p>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Tipo de Solicitud</p>';
$html .="<p>$tipo_sol.</p>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Area donde va dirigida la solicitud</p>';
$html .="<p>$area_sol.</p>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Correo Electronico</p>';
$html .="<p>$correo_electronico.</p>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Telefono</p>';
$html .="<p>$telefono.</p>";
$html .='<p style="background:#ffffff;width:400 px; color:black; font-weight:bold; padding:15px;">Descripcion de la Solicitud</p>';
$html .="<p>$descripcion.</p>";
$html .= '</tbody>';
$html .= '</table>';
$html .="</body>";
$html .="</html>";
$mail->MsgHTML($html);
$mail->AddAddress('coordtic@scv.edu.co');
$mail->IsHTML(true);
$mail->smtpConnect(
array(
"ssl" => array(
"verify_peer" => false,
"verify_peer_name" => false,
"allow_self_signed" => true
)
)
);
if ($mail->Send()) {
header('location: https://www.scv.edu.co/sgf/ti/index3.html');
}else{
$json=json_encode(array("success"=>true,"mensaje"=>$mail->ErrorInfo));
}
////segundo email
echo $json;