
In the past 48 hours, many new users have been unable to verify their emails. We also disabled the custom SMTP, but there are still issues with sending verification emails to our users.
No changes have been made to the application code, and the service has been running smoothly for months without any problems.
My project ID in Appwrite Cloud is 64e0babf09b5707326c2 and it has more than 11,000 users. Please review this issue as soon as possible.
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': '68aa2d73062fa6305832',
'$createdAt': '2025-08-23T21:06:59.027+00:00',
userId: '668bf5380031dbb5b56c',
secret: '345469',
expire: '2025-08-23T21:21:59.025+00:00',
phrase: ''
}
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;
}
};
Is there something I can check to have an idea of the issue?

Hi, I have the same problem with my project, users can request magic links but they are not being received
Recommended threads
- Realtime still not working (JS)
Hey Guy am still struggling with this one Everything was working well a while back but now realtime is completly off. I set up my database collection to allow r...
- Expo vs APK OAuth issue
I have an app that works using Expo for google OAuth but after compiling into an apk file I don't even get google account selection?
- User (role: guests) missing scope (funct...
I keep getting that trying to pull functions from the CLI. I confirmed that I am logged in and have ran appwrite init project.
