Fix spelling errors

This commit is contained in:
Madison 2025-08-18 15:19:32 -05:00
parent dc15780377
commit f939a590b5
4 changed files with 4 additions and 4 deletions

View File

@ -167,7 +167,7 @@ For custom email flows, use the `sendEmail` method from your server-side code:
```typescript
// In your API route or server action
import { stackServerApp } from '@stackframe/stack';;
import { stackServerApp } from '@stackframe/stack';
export async function inviteUser(email: string) {
const result = await stackServerApp.sendEmail({

View File

@ -43,7 +43,7 @@ export const sdkSections = [
{
title: "Email",
items: [
{ name: "SendEmailOptions", href: "types/email#sendemaildoptions", icon: "type" },
{ name: "SendEmailOptions", href: "types/email#sendemailoptions", icon: "type" },
]
},
{

View File

@ -808,7 +808,7 @@ const user = await stackServerApp.createUser({
Send custom emails to users. You can send either custom HTML emails or use predefined templates with variables.
**Parameters:**
- `options` ([SendEmailOptions](../types/email#sendemaildoptions)) - Email configuration and content
- `options` ([SendEmailOptions](../types/email#sendemailoptions)) - Email configuration and content
**Returns:** `Promise<Result<void, KnownErrors>>`

View File

@ -6,7 +6,7 @@ full: true
This is a detailed reference for email-related types in Stack Auth. If you're looking for a more high-level overview, please refer to our [guide on the email system](../../concepts/emails.mdx).
On this page:
- [SendEmailOptions](#sendemaildoptions)
- [SendEmailOptions](#sendemailoptions)
---