Twitter and Facebook invite new users to send an invitation to everyone in their Gmail, Hotmail, or Yahoo Mail accounts.
Is it easy to add this functionality to a website?
Thanks,
John
|
feedback
|
|
Last I checked you basically have to pretend to be a web browser then programatically log in to the site, scrape the contacts, then compose/send the message. It isn't difficult, but it is time consuming as each of these services works differently. I does, however, look like people have written script for some of this though: example. | |||
|
feedback
|
|
i see free script | |||
|
feedback
|
|
Yes! What they generally do is to send in the email a special URL that contain a code, for example:
That code (ABC) is associated to the email of the user so the application undestand which user is trying to subscribe. You must keep in a database the pair: email, code. HTH | |||
|
feedback
|
|
All of the above answers are correct, here is a summary and some more explanation:
when that page is accessed, get the key from the URL and find it in the table - that would give you the email address that activated the invite and the user that invited them. From here you can take it to where ever you want. | |||||
feedback
|