Email Template Variables / lodash

What I want to do, would also work in here if I could return the user email.

image

frontend.com/reset-password/<%= user.email %>

To explain a bit more, the frontend will handle the request and send it to Strapi in order to have a compulsory step for the user to update the password straight after the confirmation. My solution is partially working, but Strapi doesn’t return the user email.

  confirmEmail(token){
    return axios.get(`${STRAPI_URL}/auth/email-confirmation?confirmation=${token}`)
  }

Thanks.