TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Should I force users to validate their email address after signing up?

5 点作者 aderaynal将近 14 年前
I develop browser extensions that require people to create an account on my website in order to customize the extensions' behavior.<p>A while back, someone told me I should simplify the registration process in order to improve the number of signups. So I only ask for an email address, first name, last name, and password. And there's no email validation.<p>Turns out that about 50% of the account created are never used. So I email people a few times: - after one week to ask them if there was a problem - after two weeks to offer a free trial of the paid upgrade - after one month with a short user survey<p>It appears that less than 5% of these emails generate an action from the inactive users. Is this normal ? Are most people entering fake email addresses ? Are most of my emails blocked by spam filters ?<p>Should I force user to click a link sent to their mailbox right after registering ? Would that help my future emails go through their spam filter ?<p>I would love to have your opinion on this... Thanks!

6 条评论

idle_processor将近 14 年前
Email registration won't always fix retention problems.<p>In general, if a site forces me to register, and I either (a) don't trust the site ownership/security, or (b) don't yet intend to become a long-term user, I will fall back to using a <a href="http://bugmenot.com/" rel="nofollow">http://bugmenot.com/</a> login or sign up with a disposable email address obtained via a service like <a href="http://mailinator.com" rel="nofollow">http://mailinator.com</a> or <a href="http://10minutemail.com" rel="nofollow">http://10minutemail.com</a>. In general, I find having to verify email addresses tedious and annoying, but it's not generally a deal-breaker.<p>In another post, you mentioned "i do not allow for email address change." That could be a problem for impulsive users considering making the switch from short- to long-term use. Churning email addresses out isn't that hard, if one is so inclined. Ironically, one of the places I think confirmation email might be helpful, is when changing email address. If you force the user to confirm from both addresses, you run less risk that they make a typo in their new address.<p>That's all personal, though. You may want to search for existing conversion/retention research or just conduct some A/B tests.<p>If spammer sign-up is a big concern, and you want to prevent them from mucking up your data, consider something like <a href="http://www.google.com/recaptcha" rel="nofollow">http://www.google.com/recaptcha</a> to deter bots.
评论 #2686767 未加载
andrewjshults将近 14 年前
Do you have open/click tracking on the emails? If not you should either roll your own or use someone like sendgrid who can automate the process for you (depending on how many emails you send out, even the free tier of sendgrid might be enough). Open tracking isn't perfect but it'll help you narrow down where in the process the drop off happens (sendgrid also does spam report tracking and bounces). They also put a lot of effort into making sure that your email get through (not affiliated, just a happy customer).
评论 #2685837 未加载
alain94040将近 14 年前
Spam filters are a major issue, but it wouldn't explain why only 5% of people you ask reply.<p>On the other hand, these are people who signed up, probably curious to know what your site was about, and then they saw and decided it wasn't for them. Not much you can do at that point.<p>Have you been receiving complains from people you email?
评论 #2685688 未加载
danoc将近 14 年前
It's not unusual to see emails go ignored. According to MailChimp, the industry average open rate is 19.1% while the industry average action (click) rate is 4.0% I'm not quite sure where they get these numbers from, but it appears that your figures are normal.
calbear81将近 14 年前
Do you enforce unique email addresses in your system? What would happen if someone has already added my email to their account? What if I click on "Recover password", would I then be able to take over their account by resetting their password?
评论 #2685816 未加载
pbreit将近 14 年前
If you don't need to confirm email addresses then don't. In many cases it's really not necessary.
评论 #2689817 未加载