Email script render error: email script [ live_feed_message_headers</span><span> ] does not exist----getting this error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2015 03:54 AM
Email script render error: email script [ live_feed_message_headers</span><span> ] does not exist----getting this error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2015 08:21 AM
Try using ${live_feed_message_headers}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2016 12:21 AM
If you're getting this error, check if the HTML is correct.
Setting ${email_script:this_is_my_script} in my notification resulted in ${<span></span>email_script:this_is_my_script}.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2016 06:38 AM
Just had this problem. Checked the source code in the WYSIWYG editor and there were <span> tags in the script name. Removed those, and it works perfectly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2016 11:27 AM
I know this is a bit late, but I am experiencing a similar issue where the email notification is inserting html <span> tags into my variable and mail script calls and I thought I'd share the steps to fix since I've found a few threads here regarding the issue.
To fix it, go into the notification that is generating the error and click the < > button on the editor to open the source code editor. Look for the tag ${live_feed_message_headers}. It likely has span tags in it so it looks like this: ${live_feed_message_headers</span><span>}, which is causing the notification to be unable to find the mail script and run it. Remove the span tags and you should be good to go.
(This is also happening with the ${variables.variable_name} call!)