فهرست منبع

Mensajes de error de correos

alejandro.lara 1 سال پیش
والد
کامیت
9d4e77f138
3فایلهای تغییر یافته به همراه8 افزوده شده و 2 حذف شده
  1. 5 1
      action/solicitud_insert.php
  2. 1 0
      class/mailer.php
  3. 2 1
      class/manda_correo.php

+ 5 - 1
action/solicitud_insert.php

@@ -194,7 +194,11 @@ try{
     exit();
 }
 
-MandaCorreos::enviarCorreo($db, $asunto, $texto, $user->facultad["facultad_id"], MandaCorreos::COORDINADOR);
+if(!MandaCorreos::enviarCorreo($db, $asunto, $texto, $user->facultad["facultad_id"], MandaCorreos::COORDINADOR)){
+    echo "ERROR Correo<br>";
+    //header("Location: ".$pag."?error=2");
+    exit();
+}
 
 
 header("Location: ".$pag."?ok=0");

+ 1 - 0
class/mailer.php

@@ -82,6 +82,7 @@ class Mailer{
             if ($mail->Send()) { 
                 return true;
             }else{
+                echo $mail->ErrorInfo;
                 echo "Error al enviar correo";
                 return false;
             }

+ 2 - 1
class/manda_correo.php

@@ -77,9 +77,10 @@ class MandaCorreos{
             if($_ENV['DB_NAME'] == "paad_pruebas" || self::PRUEBAS){
                 $asunto = "PRUEBAS-".$asunto;
             }
-            Mailer::enviarCorreo($to, $asunto, $texto, true);
+            return Mailer::enviarCorreo($to, $asunto, $texto, true);
            
         }
+        return true;
     }
 }
 ?>