Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2018 09:34 PM
How to call Script Include from Email Script and get return value and utilise in Email Script.
There is one Classless Script include unable to call
I have tried
var si = new ClassLessSI();
var result = si.ClassLessSI();
its not working
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2018 09:39 PM
so just try
var result =ClassLessSI() ;
Please mark correct if it is helpful
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2018 09:37 PM
Hi RussellPhilips,
var si = new ScriptInclude() ;
var result =si.method();
used for class si not for classless SI
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2018 09:39 PM
so just try
var result =ClassLessSI() ;
Please mark correct if it is helpful