I am implementing an invite feature. So in a database I have the following fields: invite_number, person_sending, user_receiving, and email_to_send_to.
Invite_number is basically id for the request, person_sending is the id of the person sending the request, user_receiving is the id of the person in the users account but has not registered at the site, and email_to_send_to is the email the mail was sent to.
Now when I am sending the link to the user in email, how do I let the user know that the person he sent an email to has created an account?
Is sending the email link as domain.com/signup.php?id=$invitenumber the right way?
And then would I use the $invitenumber to inform the user?