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
- Cloud function deploy stucks in processi...
Been trying for the last hours to deploy my function but for whatever reason, alwasy stuck on processing!
- One-time Cloud migration blocked by data...
Hi, I’m blocked on a one-time migration from Appwrite Cloud to my self-hosted Appwrite instance. We already fixed the region issue, and the migration now corre...
- All My Project is Gone
Hello everyone, please help. Why have all my projects suddenly disappeared? I received a warning via email about one of my projects being paused. When I clicked...