Are custom states secure?

Yes this can be made secure. It’s a method I’ve used. On page load > Calculate RandomString:Length of characters:6:Use numbers = checked.

On your app, you might have a login page where you’ll want to redirect the user to in your corresponding email.
So what you’d do then is, create the link to send the user to and append a querystring of this code and use it in the email. Here’s how that would look.

https://iwipestanding.com/login?code=page's code state

When the user tries to login and gives the code they’ve received, you’ll grab this code from the url and match the Input field for the verification.

Want to send a text instead?
You’ll need their phone number and their carrier’s gateway. Let’s assume ATT.

Your email will be sent to 1234567891@txt.att.net which will send a text message.

Gateway’s to send free texts via email

  1. AT&T: number@txt.att.net (SMS), number@mms.att.net (MMS)
  2. Verizon: number@vtext.com (SMS), number@vzwpix.com (MMS)
  3. T-Mobile: number@tmomail.net (SMS & MMS)
  4. Sprint: number@messaging.sprintpcs.com (SMS), number@pm.sprint.com (MMS)
  5. Xfinity Mobile: number@vtext.com (SMS)
  6. Virgin Mobile: number@vmobl.com (SMS), number@vmpix.com (MMS)
  7. Tracfone: number@mmst5.tracfone.com (MMS)
  8. Metro PCS: number@mymetropcs.com (SMS & MMS)
  9. Boost Mobile: number@sms.myboostmobile.com (SMS), number@myboostmobile.com (MMS)
  10. Cricket: number@sms.cricketwireless.net (SMS), number@mms.cricketwireless.net (MMS)
  11. U.S. Cellular: number@email.uscc.net (SMS), number@mms.uscc.net (MMS)
1 Like