Follow up page based on campaign membership | Community
Skip to main content
Cecile_Maindron
Level 10
May 5, 2014
Solved

Follow up page based on campaign membership

  • May 5, 2014
  • 2 replies
  • 1258 views
Hi,

we have following process:
lead fills out MKTO form on our Drupal website > leads enters approval process within Marketo > if lead has been approved (i.e. he hasn't previously submitted same request) > page opens in Drupal with download links.

Can we trigger the form's follow up page  (e.g. 2.0 form) based on campaign membership (e.g. belongs to approved campaign)? If not how would you proceed? Currently we have a generic thank you page and then we send a confirmation or rejection email. However we would like to improve user experience and skip email.

Thanks for your help.

Cécile @ Talend

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Kenny_Elkington
Hey Cecile,

Campaign membership cannot be used directly for this sort of the.  However, If the approval is stored in a field , you could have it come in as a token on your followup page, and then display particular content conditionally on this.  Something like this:

<script>
var approved = {{lead.Approval Status}};

if(approved){
//display content for approved
}else{
//display other content
}
</script>

This would have to be on a Marketo landing page however.  If that's not feasible, you would need to use either Marketo SOAP, or determine the display locally in your CMS.

2 replies

Kenny_Elkington
Adobe Employee
Kenny_ElkingtonAdobe EmployeeAccepted solution
Adobe Employee
May 5, 2014
Hey Cecile,

Campaign membership cannot be used directly for this sort of the.  However, If the approval is stored in a field , you could have it come in as a token on your followup page, and then display particular content conditionally on this.  Something like this:

<script>
var approved = {{lead.Approval Status}};

if(approved){
//display content for approved
}else{
//display other content
}
</script>

This would have to be on a Marketo landing page however.  If that's not feasible, you would need to use either Marketo SOAP, or determine the display locally in your CMS.
Cecile_Maindron
Level 10
May 7, 2014
Ok we are not using Marketo landing page but a Marketo form. let's see how it goes....