Adding save quote for later
There are two ways of implementing this feature. One is slightly more complex than the other.
Querystring prefill
Lead Challenge
Querystring prefill
The most simple and straightforward solution is to prefill the webapp via querystring parameters. This can be achieved via providing all of the customer's input in the email template.
This method CANNOT be used if there are a lot of variables as it will build a long URL that some browsers cannot handle.
Lead Challenge
Using lead challenge is a much more versatile way of retrieving lead data. Though it requires more work up front.
Field definition
First, the webapp must know that a "challenge" exists for this product and the fields associated with the challenge. This can be done by defining the lead_challenge
field definition.
Challenge screen flow manifest
Next, a screen where the customer will be able to provide their challenge information (fields) must be created.
Initial screen definition
The initial screen must be set to the challenge screen if lead_token_valid
flag exists.
Email template
The feature must be enabled in the email template via lead.token
.
Contents
Finally, don't forget to set the new contents.
Last updated