Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/types/tailor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,10 @@ declare namespace tailor.idp {
userId: string;
/** The URI to redirect to after password reset */
redirectUri: string;
/** The sender display name. Defaults to 'Tailor Platform IdP'. */
fromName?: string;
Comment on lines +366 to +367
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought senderName might be okay too, but I guess it's because of the email specs?

Copy link
Copy Markdown
Contributor Author

@k1LoW k1LoW Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fromName is the display name portion of the "From" header (Display Name <address>). Since this field only overrides the display name, not the actual sender address, fromName is more precise than senderName. This also aligns with the upstream (platform-core-services) naming.

/** The email subject line. Defaults to the localized default subject. */
subject?: string;
}

/**
Expand Down