<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>how to open a new outlook email from interface</title><link>https://community.appian.com/discussions/f/user-interface/36859/how-to-open-a-new-outlook-email-from-interface</link><description>Hi there, 
 I want to put a link like &amp;quot;submit a help ticket&amp;quot; in an interface, when user click the link, then a outlook new email will be open, and have the default subject and recipient email address, I know it&amp;#39;s easy to do it in the HTML like 
 &amp;lt;a href</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/140992?ContentTypeID=1</link><pubDate>Tue, 24 Sep 2024 08:16:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:27b46ac3-b49d-41cd-afb8-acb83bf0ebf3</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;AFAIK you cannot pass any content into the body of the email. If you want to create a fully built-out email you can do so within Appian and send directly as an email to the recipient(s). Is there a specific reason you want the email opened in your email client (which will require you to manually send) rather than having it sent automatically as described above?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/140837?ContentTypeID=1</link><pubDate>Thu, 19 Sep 2024 10:43:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9e25918e-4a34-4747-b7de-5190b01f72a5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;a id="" href="https://www.w3docs.com/snippets/html/how-to-create-mailto-links.html"&gt;https://www.w3docs.com/snippets/html/how-to-create-mailto-links.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The length is limited by the operating system or the email client and cannot be adjusted from Appian.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/140831?ContentTypeID=1</link><pubDate>Thu, 19 Sep 2024 09:21:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b83c946c-a8ab-4c97-8750-b27157b79285</guid><dc:creator>avinashg3026</dc:creator><description>&lt;p&gt;&lt;a href="/members/stewart.burchell"&gt;Stewart Burchell&lt;/a&gt;&amp;nbsp;How do we pass body into that dynamically like using a local variable data and how to use it such that it supports more than 2000 characters in its body.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/138859?ContentTypeID=1</link><pubDate>Tue, 30 Jul 2024 16:40:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e9538154-6eb7-452e-acd9-b8b0ae87580a</guid><dc:creator>aliakbar2000</dc:creator><description>&lt;p&gt;You can also use the same link in stampField(), cardLayout() based on your design preference.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/138857?ContentTypeID=1</link><pubDate>Tue, 30 Jul 2024 16:08:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e6777deb-3ad5-4b67-abe3-7edc8bd8f026</guid><dc:creator>linp0001</dc:creator><description>&lt;p&gt;thank you very much, I will give it a try.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to open a new outlook email from interface</title><link>https://community.appian.com/thread/138855?ContentTypeID=1</link><pubDate>Tue, 30 Jul 2024 16:03:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:62e9fcfb-cb24-4e09-b2bb-c9191e7de27d</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;Something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  {
    a!richTextDisplayField(
      value: a!richTextIcon(
        icon: &amp;quot;ENVELOPE&amp;quot;,
        size: &amp;quot;MEDIUM_PLUS&amp;quot;,
        link: a!safeLink(
          uri: &amp;quot;mailto:xxx@gmail.com?subject=yyy&amp;quot;,
          openLinkIn: &amp;quot;NEW_TAB&amp;quot;
        ),
        linkStyle: &amp;quot;STANDALONE&amp;quot;
      )
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>