SOLVED

Re: Forward to a friend

Go to solution
Kelly_Harman1
Level 2

Forward to a friend

Does anyone currently use the forward to a friend feature? I was wondering if it was possible to add a snippet that lets the person know a friend had us send this. So they don't assume we are just spamming them. 

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Forward to a friend

Actually (here it comes) you sort of can!

 

A person created via Forward to Friend has the Lead Source "Forward to Friend."

 

So on the very first F2F email to a person, you can insert conditional content, say via a Velocity token:

 

#if( $lead.LeadSource.equals("Forward to Friend") && $lead.F2FWelcomeSent.equals("") )
A friend likes you.
#end

 

 

Then have a trigger campaign on Received Forward to Friend Email that flips a Boolean field (in this example it's called F2FWelcomeSent) to true after a minute. (I generally hate arbitrary Wait steps but AFAIK there's no other way to do this one.)

 

Now, for a person who already exists in the db, but whose friend forwards them something, that's considerably more complex. You have to call the F2F endpoint as a webhook. More than I can get into in this response, maybe a blog post sometime.

 

P.S. There are legal reasons to avoid Forward to Friend, such as GDPR and similar legislation, which are a different question.

View solution in original post

3 REPLIES 3
Grace_Brebner3
Level 10

Re: Forward to a friend

Unfortunately not - and this is the biggest limitation and probably the primary reason why people don't use the forward to a friend feature; you don't get to control those details. 

SanfordWhiteman
Level 10 - Community Moderator

Re: Forward to a friend

Actually (here it comes) you sort of can!

 

A person created via Forward to Friend has the Lead Source "Forward to Friend."

 

So on the very first F2F email to a person, you can insert conditional content, say via a Velocity token:

 

#if( $lead.LeadSource.equals("Forward to Friend") && $lead.F2FWelcomeSent.equals("") )
A friend likes you.
#end

 

 

Then have a trigger campaign on Received Forward to Friend Email that flips a Boolean field (in this example it's called F2FWelcomeSent) to true after a minute. (I generally hate arbitrary Wait steps but AFAIK there's no other way to do this one.)

 

Now, for a person who already exists in the db, but whose friend forwards them something, that's considerably more complex. You have to call the F2F endpoint as a webhook. More than I can get into in this response, maybe a blog post sometime.

 

P.S. There are legal reasons to avoid Forward to Friend, such as GDPR and similar legislation, which are a different question.

Grace_Brebner3
Level 10

Re: Forward to a friend

and then @SanfordWhiteman comes in with the wizardry... this is amazing.