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
- Email address must be in its canonical f...
Hello, Recently I was trying to signup with my GitHub account with appwrite account for availing the student benifits but while trying to signup I saw such erro...
- Login / Signup issue
So I have been trying to create an account on appwrite but no matter what I try it doesn't work. I tried using GitHub at first but after logging in it just red...
- [SOLVED] Appwrite Cloud and FRA cloud se...
Can anyone estimate how long this will take to resolve? I am checking status here https://status.appwrite.online/