Reproducing our Forward-to-a-Friend Program & Links:
These is a pretty quick and simple thing to do. What you will want to do here, normally, is simply make a few API calls to build up some static URLs that can be inserted into your HTML. If you need the user-specific links, you'll either need to be storing our Unique Email IDs on your side or you'll need to make an API call each time.
Let's look at this in detail. Here is our standard Forward-to-a-Friend link:
http://forward-to-friend.com/forward?u=[UID]&id=[LID]&e=[EID]
[UID] is your unique user id. We return it via the getAccountDetails() function.
[LID] is the list id that we return when you call the lists() function.
[EID] is optional. If you want to have it tracked as being sent from a specific existing list member, just call the listMemberInfo() function for their email address.
See, told ya that was gonna be quick and simple....