Hi Friends,i have a question and it would be helpful if i get the solution.
Created a javascript code with function abc() and the filename as "xyz.js".
In Campaign email delivery template i have used the below code to call the function and the javascript filename:
<script src="xyz.js"></script>
<%=abc()%>
But i am getting an error like abc is not defined.
do i need to load the file to pick the particular filename?
Solved! Go to Solution.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hello @ashajosh
Can you share more details on what you are trying to do with the javascript in the delivery template.
Calling javascript with <script> tags is not the right way in adobe campaign. You can use loadLibrary('NAMESPACE:JS_FILE_NAME')
Thanks,
Thanks Manoj..
in the javascript function i am trying to return the word...
in the delivery template i have called the function,
do i need to provide the loadlibrary inside the delivery template?
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi,
The <script/> tag is rendered client-side, and immediately stripped by every email client since its invention.
If you're trying to use a server-side include, those are unavailable to the MTA process.
You can include JS with personalization blocks (I usually do this), or by eval()'ing response from delivery query (for cross-purpose JS).
Thanks,
-Jon
Views
Likes
Replies
Views
Likes
Replies