Own Auth Delivery
Managed email delivery for Own Auth magic links, email verification, password reset, and invitations.
What It Does
Own Auth creates auth links. Own Auth Delivery sends those links by email for teams that do not want to wire an email sender themselves.
- checks the delivery key on each request
- validates the auth URL against the app settings
- rate-limits sending by key and recipient
- queues email jobs before sending
- writes safe app delivery email logs
How It Fits
your app
-> own-auth
-> OwnAuthManagedEmailProvider
-> Own Auth Delivery
-> email queue
-> outbound senderThe delivery service does not create login tokens or verify sessions for your users. The Own Auth package does that. This service sends the email.
Product Model
A developer account can manage multiple standalone apps. Users switch between apps to view each app's settings, delivery keys, and app delivery email logs.
- settings decide which app URLs are allowed
- delivery keys belong to one app
- app delivery email logs are scoped to one app
- rotating or revoking a key only affects that app
What It Is Not
- not the Own Auth auth engine
- not user/session storage for apps using Own Auth
- not a general email marketing tool
- not tied to one app framework