Hi! I'm reading through your docs and I have a qui...
# ask-a-descoper
c
Hi! I'm reading through your docs and I have a quick question. do you have built in support to send email links to have a user join a tenant? or would we have to have our own email service?
o
Hi @colossal-appointment-48082 ! When inviting a user with the management SDK you can specify tenant information https://docs.descope.com/manage/users/#invite-user
See the example in the link
s
we provide an "out of the box" mail provider for you which you can override with your own sendgrid or SMTP based on if you wish
c
amazing thank you for the clarification!
s
also, you can invite from the users page UI:
that will use our own email provider
c
thank you. and just to confirm the
descopeSdk.password.sendReset()
method also sends an email? https://docs.descope.com/build/guides/client_sdks/passwords/#reset-password
s
yes
c
nice okay! thanks a bunch!
l
@colossal-appointment-48082 It only sends an email, a magic link email with the password reset template. You can see it in the Descope console. You'll need to handle the verification like a regular Magic Link. Once verified, you can then call
update
with the refresh JWT you have.
c
Hi Itai! thanks for the explanation! that makes sense to me!