Is there way to trigger email verification (send e...
# talk-kratos
f
Is there way to trigger email verification (send email) via admin method?
p
Hi @fancy-salesclerk-15819 No, it's not supported.
c
But you can also use client methods from your backend if needed:
Copy code
const oryClient = this.oryService.getClient();
      const {
        data: { id: verificationFlow },
      } = await oryClient.initializeSelfServiceVerificationFlowWithoutBrowser();
      await oryClient.submitSelfServiceVerificationFlow(verificationFlow, {
        email: email,
        method: 'link',
      });
f
Awesome, thanks! Maybe you also know how to disable autosending verification emails (without disabling verification at all, as it also disables the method mentioned above)?