Sends an invite link to the user's email address.
The email to send the invite to.
The redirect url to use. If you don't specify this, the platform specific will be used, like deeplinks on android.
Custom data to create the user with.
supabase.auth.admin.inviteUserByEmail(
email = "example@email.com",
//optional:
redirectTo = "https://example.com/redirect",
data = buildJsonObject \{
put("custom", "value")
\}
)