1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

Fixed mail errors

This commit is contained in:
eldadfux 2019-08-25 08:16:17 +03:00
parent 5b47119ebc
commit cf1edfc5bc
2 changed files with 5 additions and 5 deletions

View file

@ -152,7 +152,7 @@ $utopia->post('/v1/auth/register')
// return;
// }
// throw new Exception('Problem sending mail: ' . $mail->getError(), 500);
// throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
$webhook
@ -287,7 +287,7 @@ $utopia->post('/v1/auth/register/confirm/resend')
$mail->send();
}
catch(Exception $error) {
//throw new Exception('Problem sending mail: ' . $mail->getError(), 500);
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
$response->json(array('result' => 'success'));
@ -519,7 +519,7 @@ $utopia->post('/v1/auth/recovery')
$mail->send();
}
catch(Exception $error) {
//throw new Exception('Problem sending mail: ' . $mail->getError(), 500);
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
$audit

View file

@ -383,7 +383,7 @@ $utopia->post('/v1/teams/:teamId/memberships')
$mail->send();
}
catch(Exception $error) {
//throw new Exception('Problem sending mail: ' . $mail->getError(), 500);
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
$audit
@ -464,7 +464,7 @@ $utopia->post('/v1/teams/:teamId/memberships/:inviteId/resend')
$mail->send();
}
catch(Exception $error) {
//throw new Exception('Problem sending mail: ' . $mail->getError(), 500);
//throw new Exception('Problem sending mail: ' . $error->getError(), 500);
}
$audit