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
- I have try to use the appwrite in to the...
Invalid Origin. Register your new client (oailedjdbkhlkakmnnapoonllbnfmfij) as a new Web (Chrome Extension) platform on your project console dashboard
- Project Paused
I am the developer of a project and the admin is not able to login into their account for some reason and I can't change the status of the project due to role r...
- what happened with 'never paused' ????
I can already imagine how annoying this is going to be...