<@U04UQ68083H> is it possible to send recovery lin...
# ory-copilot
c
@chilly-king-10285 is it possible to send recovery link using kratos AFAIK you can create the link but not sending it ?
b
A message from kapa.ai
Yes, you are correct. With Ory Kratos, you can create a recovery link for a user's account, but the system does not currently support sending the recovery link directly to a user's email. This feature is being tracked in issue [#595](https://github.com/ory/kratos/issues/595) on the Ory Kratos GitHub repository. Here is an example of how a recovery link is created:
Copy code
json POST /admin/recovery/link {   "identity_id": "uuid of the identity",   "expires_in": "time until link expiration" }
The response will contain the recovery link:
Copy code
json {     "recovery_link": "<https://playground.projects.oryapis.com/self-service/recovery?flow=81c55cec-76fd-4907-bddf-cc112e835698&token=yM9nAZpPIjwccKh9qHRh8OfywZSRcr6q>",     "expires_at": "2022-02-25T03:09:37.60684766Z"   }
You can then manually send this link to the user for them to recover their account. For more information, you can refer to the [Ory Kratos documentation](https://www.ory.sh/docs/kratos/manage-identities/account-recovery#response-1).