Agregando condicional para mandar mails solo al aceptar un postulante

parent 452970fa
......@@ -34,6 +34,7 @@ public class Filtros extends HttpServlet {
System.out.println(respuesta);
update(Integer.parseInt(req.getParameter("id")), valor);
postulantes = listarPostulante();
if (valor.equals("1")) {
try {
SendMail send = new SendMail();
send.sendingMail(correo_postulante, nombre_postulante, apellido_postulante, bootcamp_id);
......@@ -45,6 +46,7 @@ public class Filtros extends HttpServlet {
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
} else if(nombre.length() > 1){
postulantes = buscarPorNombre(nombre);
}
......
......@@ -130,8 +130,6 @@
<input type="hidden" name="apellido" value="${postulante.apellido}">
<input type="hidden" name="correo" value="${postulante.correo}">
<input type="hidden" name="bootcamp_id" value="${postulante.bootcamp_id}">
<button type="submit">Rechazar</button>
<button type="submit">Aceptado</button>
</form>
</c:otherwise>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment