diff --git a/packages/backend/src/config/auth.ts b/packages/backend/src/config/auth.ts index 0e91d8a..5c64ce9 100644 --- a/packages/backend/src/config/auth.ts +++ b/packages/backend/src/config/auth.ts @@ -34,7 +34,7 @@ auth.settings.onRegisterWithEmailAndPassword = async (email, password, options) auth.settings.onSendEmailConfirmation = async (email, html, link) => { await resend.emails.send({ - from: 'web-template@colyseus.dev', + from: 'web-template@colyseus.io', to: email, subject: '[Colyseus Web Template]: Reset password', html, @@ -43,7 +43,7 @@ auth.settings.onSendEmailConfirmation = async (email, html, link) => { auth.settings.onForgotPassword = async (email: string, html: string/* , resetLink: string */) => { await resend.emails.send({ - from: 'web-template@colyseus.dev', + from: 'web-template@colyseus.io', to: email, subject: '[Colyseus Web Template]: Reset password', html, @@ -86,4 +86,4 @@ export function createUser(profile: any) { locale: profile.locale || "", email: profile.email, }) -} \ No newline at end of file +}