Is it ok to use GET urls in confirmation or verification emails for user accounts? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:27:23Z http://stackoverflow.com/feeds/question/1081430 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081430/is-it-ok-to-use-get-urls-in-confirmation-or-verification-emails-for-user-accounts 1 Is it ok to use GET urls in confirmation or verification emails for user accounts? ehfeng 2009-07-04T03:30:43Z 2009-07-04T04:15:56Z <p>I read that some webmail services prefetch url links in emails. The GET request would then trigger my server to verify the account, regardless of whether the user did anything. </p> <p>Is this true and if so, how can I work around this? I have seen a lot of websites with one-click solutions for confirming user accounts. </p> http://stackoverflow.com/questions/1081430/is-it-ok-to-use-get-urls-in-confirmation-or-verification-emails-for-user-accounts/1081460#1081460 4 Answer by Alex Martelli for Is it ok to use GET urls in confirmation or verification emails for user accounts? Alex Martelli 2009-07-04T04:05:11Z 2009-07-04T04:05:11Z <p>Never heard of a webmail service who'd pre-fetch GET links with query parameters -- that could turn out to be costly in many ways, after all. I think you'll be fine with the one-click solution you're thinking of!</p> http://stackoverflow.com/questions/1081430/is-it-ok-to-use-get-urls-in-confirmation-or-verification-emails-for-user-accounts/1081469#1081469 1 Answer by miamisoftware for Is it ok to use GET urls in confirmation or verification emails for user accounts? miamisoftware 2009-07-04T04:15:56Z 2009-07-04T04:15:56Z <p>Same as Alex, never heard of the pre-fetching you're talking about. I don't know if this is what you're looking for but if you're using an MVC framework, you can put in your specially crafted URL and have a large button that the user clicks to actually confirm. Using that submission (the click) from that page as the referrer and stripping out the portion of the URL, you then set your confirmed or similar column in your database.</p>