Questions Tagged With ivyscripthttps://answers.axonivy.com/tags/ivyscript/?type=rss&user=Alexisquestions tagged <span class="tag">ivyscript</span>enMon, 09 Feb 2015 18:56:24 -0500How do I send html formated content in email step?https://answers.axonivy.com/questions/1151/how-do-i-send-html-formated-content-in-email-step<p>Hello</p> <p>How can I send formated emails? Assume I have an html-formated String and whant to bring it into my email. Problem here is that even this method will escape the String:</p> <p><code>&lt;%=ivy.html.getObject("in.mailString").toString()%&gt;</code></p> <p>Is there an other possibility to send the content of a JSP-Page?</p> <p>Best regards</p> <p>Alexis</p>AlexisMon, 09 Feb 2015 18:56:24 -0500https://answers.axonivy.com/questions/1151/how-do-i-send-html-formated-content-in-email-stepivyscriptjspGeneric classes in ivyscripthttps://answers.axonivy.com/questions/531/generic-classes-in-ivyscript<p>Hello IvyTeam</p> <p>Is there a simple way calling self made generic classes? Like the List.</p> <p>Data:<br> dao Dao&lt;item&gt;</p> <p>in Ivyscript:<br> calling dao.get(id) the response would be of type Item.</p> <p>generic Class:<br> T get(int id)</p> <p>It would be great if there is a solution.</p> <p>Thanks for an answer and Greetings</p> <p>Edit: Trying to extend a class with the Generic doesn't help any further.<br> In java code those objects return items as it should and in ivyscript Objects are still returned.</p> <pre><code>public class DaoItemTest extends Dao&lt;Item&gt; { public DaoItemTest() { super(Item.class); } } </code></pre>AlexisWed, 19 Feb 2014 13:18:14 -0500https://answers.axonivy.com/questions/531/generic-classes-in-ivyscriptivyscript