--- title: Why do I have to click again to confirm I want to subscribe after I already clicked the confirmation link you sent me? --- There are two aspects that cause signing up for our newsletter to require multiple clicks: - [People should only be able to sign up themselves](#people-should-only-be-able-to-sign-up-themselves) - [GET requests should not make changes](#get-requests-should-not-make-changes) ## People should only be able to sign up themselves This one is pretty easy to understand. One should not be able to subscribe somebody else's email address to the FreeSewing newsletter. This is why, after indicating you want to sign up, we sent you a confirmation email to the email address you provided. If you receive this email, it confirms not only that the email address is working, but also that you have access to it. In other words, only after you click the link in the confirmation email can we know for certain that: - The email address is valid - The owner of the email address wants to subscribe That's where it would be over. Except for one technical detail that's also important: ## GET requests should not make changes :::warning This is more technical and harder to understand ::: Another reason is that while we could make it so that clicking the link in your email would immediately subscribe you, it would be in violation of internet standards. Specifically, the __HTTP__ protocol's __GET method__ definition which states that: :::note