ibrahimyaacob
ibrahimyaacob4mo ago

convex auth: you can only send testing emails to your own account??

Can someone help out how do i overcome this ? I definitely need to test different account sign in on development because the app im using will involve multiple user (collab feature)
No description
3 Replies
jamwt
jamwt4mo ago
you'd need to set up your own resend account etc. domain reputation is a huge, nasty nasty problem to manage, and people will take advantage of any service (including convex) acting as an open relay to spam people so we have pretty significant limits on test emails. delegating domain reputation to customers is a whole 'nother business, which is why it's worth paying resend or postmark etc. for that. that's what the Convex team does for our own emails!
ibrahimyaacob
ibrahimyaacobOP4mo ago
@jamwt i would pay, so could you point me to the docs for setting this up ? oh it looks like i managed it
export const { auth, signIn, signOut, store } = convexAuth({
providers: [Resend({ from: EMAIL_DOMAIN })],
});
export const { auth, signIn, signOut, store } = convexAuth({
providers: [Resend({ from: EMAIL_DOMAIN })],
});
jamwt
jamwt4mo ago
nice!

Did you find this page helpful?