43% of signups never click the verification email - kill verification or fix the email
Roughly 340 signups over two months, 145 of them never verified and therefore never got into the app at all. That number feels enormous.
My instinct is to drop verification entirely and let people in. But I assume there is a reason everyone has this wall, so before I rip it out - is 43% actually a UX number or is something else going on?
@capsule_cora · 3w ago · 2 replies
Before touching the flow, confirm the mail is actually arriving. Auth stacks have surprisingly small default sending limits that nobody reads about until this exact moment - the built-in mailer on some hosted auth services is a couple of messages an hour and will only send to addresses on your own team, and even after you plug in your own SMTP there is typically a default cap in the tens of messages per hour that you have to raise manually in the settings. If you ever had a day with a spike, mail was silently dropped.
Go look at your sending provider's accepted, delivered, bounced and complained counts for those 340 addresses. If delivered is well under 340, this is a plumbing problem and no amount of button redesign fixes it.
Reply
Report
@colorgrade_cleo · 2w ago
And check the domain you are sending from. Mine had authentication set up on the marketing domain and nothing at all on the transactional subdomain the auth service used by default, so a big chunk of verification mail went straight to spam. I spent two weeks redesigning a button before I found a DNS record that did not exist.
Reply
Report