Send custom text to a custom email

Jan 30, 2023

I want my learner to enter their email in a text entry box. Then enter their response in a second text entry box. When they select submit, I want the contents of the second text entry box to be sent to the email they entered in text entry box 1. Any thoughts on how to approach this? 

1 Reply
Walt Hamilton

You might get some ideas from this thread:

https://community.articulate.com/discussions/articulate-storyline/email-trigger-6b23ebd8-5867-45a1-878f-a14f25c9f66a 

Start your JS with this line to get your SL variable contents:

var player = GetPlayer();
 
Then use this line as a model to load the SL variable contents into the JS variables.
 
var email = player.GetVar("emailVariable");