mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Fixed mail errors
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user