Forum Discussion
JonnyCrook
4 years agoCommunity Member
Storyline send email Javascript
Hi,
I've created a resource that generates an email after the user has selected a number of options. These options are numerous and fed into the email via separate variables. The problem is that ...
MathNotermans-9
4 years agoCommunity Member
Try this...
Set a var for your body...
var myBody = "You selected: "+category1+..... your immense string
var mailto_link='mailto:'+useremail+'?subject='+subject+'&body='+ encodeURIComponent(myBody);
Changed it in your text file too...