
It seems like I'm having trouble with receiving the email with the otp from appwrite services.
This is the general headers request:
Request URL
https://fra.cloud.appwrite.io/v1/account/tokens/email
Request Method
POST
Status Code
201 Created
This is the body request:
{
"userId": "my user id", // replaced
"email": "my personal email @gmail.com" // replaced
}
This is the response body:
{
"$id": "68a86b4736bf11211d96",
"$createdAt": "2025-08-22T13:06:15.224+00:00",
"userId": "my user id", // replaced
"secret": "",
"expire": "2025-08-22T13:21:15.224+00:00",
"phrase": ""
}
In fact yesterday it worked well and also the days before. Unfortunately today I'm not receiving the otp mail from appwrite as usual.
The implementation is js:
public readonly createEmailToken = async (
userId: string,
email: string,
): Promise<Models.Token> => {
try {
return await this._account.createEmailToken(userId, email);
} catch (error) {
this._logger.error('Failed to create email token:', error);
throw error;
}
};
dependency: "appwrite": "^18.2.0"
.
Is there something I can check to have an idea of the issue?
Recommended threads
- Switched a project to a different organi...
I recently switched my project to another organization but all the Data I had in Form of Buckets, Databases, Keys, Users, etc. aren't being shown. However I can...
- Fixing OAuth2 authentication issue
I am using React-Router and Vite to implement google auth , I have setup my Google CLient ID and the consent forms comes , But after I have signed up with Googl...
- Google Authentication problem with no er...
Hello everyone, I’m encountering an issue with authentication with google in my Expo React Native app. It was working fine two weeks back, but it has recently ...
