Having Thank You page included in email notification results | Community
Skip to main content
Answered

Having Thank You page included in email notification results

  • May 23, 2021
  • 1 reply
  • 55 views

Hi Community,

It’s Rachel here, from my company Taylored.

I’ve searched around and can’t seem to find an answer so here goes. Right now, we have a “Find My Fit” Quiz which helps people understand their recommended membership option at Taylored (we are a Holistic Health Hub in New Zealand). I have a variety of weightings and numbers that add or subtract to the score (with some key multipliers) and and logic step to group people into categories which sends them to a unique Thank You screen option based on their score to ‘land people’ at their recommendation. I did it this way so I could have the button linking them to the right place on our website to learn more. It is currently working really well and I’m adjusting the weightings based on the results we’ve gotten so far. 

However, what we’ve noticed is that when a person receives an email notification (either ourselves as a copy or the person taking the quiz), it gives them a total score but it doesn’t show them the text from the Thank You screen to actually give them a copy of their recommendation. 

Does anyone know how to force the system to show the text from the Thank You screen in the email notification?

You can find our quiz here: 

 

Best answer by john.desborough

@taylored - welcome to the community from another user. 

the ending page is shown after the submit button is pushed, therefore, the text from the end page is NOT part of the answers to the typeform. 

The way around that is to create a variable, say v_ending_page, and another for v_endpage_text and then you can populate the ending page variable and the ending page text variable with values based on where you are sending them ie something like this:

  • if fit_score is lt 10 set v_ending_page to ‘starter’
  • if fit_score is lt 10 set v_endpage_text to ‘here’s the text from the ending page’ 
  • if fit_score is gt10 and fit_score is lt 15 set v_ending_page to ‘intermediate’ 
  • etc. 

that way the variable values would appear in your result set on submission and would be available to use in the email. 

not perfect but it works. for me. 

des

View original

1 reply

john.desborough
Forum|alt.badge.img+6
  • Certified Partner & Champion
  • 5317 replies
  • Answer
  • May 24, 2021

@taylored - welcome to the community from another user. 

the ending page is shown after the submit button is pushed, therefore, the text from the end page is NOT part of the answers to the typeform. 

The way around that is to create a variable, say v_ending_page, and another for v_endpage_text and then you can populate the ending page variable and the ending page text variable with values based on where you are sending them ie something like this:

  • if fit_score is lt 10 set v_ending_page to ‘starter’
  • if fit_score is lt 10 set v_endpage_text to ‘here’s the text from the ending page’ 
  • if fit_score is gt10 and fit_score is lt 15 set v_ending_page to ‘intermediate’ 
  • etc. 

that way the variable values would appear in your result set on submission and would be available to use in the email. 

not perfect but it works. for me. 

des


Reply