My app allows users to invite people they know by email. If the invitee is not already registered, we send an email asking the invitee to register.
I'd like to be able to send unique signup links that contain an email GET param and use this GET param on the app side to populate the email field of the registration form.
Will I introduce any additional security vulnerability by doing so?
An example...
Email URL: https://www.domain.com/signup?email=me@email.com
The app will then use params[:email] to retrieve the email from the URL and set that as the registration form's email field.