Every time when I try to update my user with the PATCH method to the /users/me/ endpoint, an activation email is always sent. The user is already active in the system... so I don't know what is happening.
SEND_ACTIVATION_EMAIL is True, but I understand that the email will be sent only after: creating an account or updating their email (I'm not updating the email)
DJOSER = {
....
'ACTIVATION_URL': 'auth/users/activation/{uid}/{token}',
'SEND_ACTIVATION_EMAIL': True,
....
}