Web Developer
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?