<?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>Contact Us Email within Site/Page</title><link>https://community.appian.com/discussions/f/new-to-appian/39513/contact-us-email-within-site-page</link><description>I am extremely new to Appian and looking for some answers. I have searched the forums to no avail. I have created a Site with multiple pages in it, one of them being a Contact Us page. On the Contact Us page, I have been trying to apply the expression</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Contact Us Email within Site/Page</title><link>https://community.appian.com/thread/150333?ContentTypeID=1</link><pubDate>Fri, 25 Jul 2025 05:03:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b179b7c1-abd3-4de0-95fe-ba85b161c03b</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;You&amp;#39;re using mailto:// instead of mailto: and url: instead of uri: in a!safeLink, plus missing commas and parentheses.&amp;nbsp;&lt;br /&gt;Made changes to your code have a look at it..&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!headerContentLayout(
  header: {
    a!cardLayout(
      contents: {
        a!richTextDisplayField(
          labelPosition: &amp;quot;COLLAPSED&amp;quot;,
          value: {
            a!richTextIcon(
              icon: &amp;quot;paw&amp;quot;,
              color: &amp;quot;#255be3&amp;quot;,
              size: &amp;quot;EXTRA_LARGE&amp;quot;
            )
          },
          align: &amp;quot;RIGHT&amp;quot;
        )
      },
      height: &amp;quot;AUTO&amp;quot;,
      style: &amp;quot;#0f1632&amp;quot;,
      marginBelow: &amp;quot;NONE&amp;quot;,
      showBorder: false
    )
  },
  contents: {
    a!sideBySideLayout(
      items: {
        a!sideBySideItem(
          item: a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {
              a!richTextIcon(
                icon: &amp;quot;question-circle&amp;quot;,
                color: &amp;quot;#255be3&amp;quot;,
                size: &amp;quot;EXTRA_LARGE&amp;quot;
              )
            },
            align: &amp;quot;CENTER&amp;quot;,
            marginAbove: &amp;quot;EVEN_MORE&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        )
      }
    ),
    a!richTextDisplayField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      value: {
        a!richTextItem(
          text: {
            &amp;quot;Questions, comments, concerns &amp;quot;
          },
          size: &amp;quot;LARGE&amp;quot;
        ),
        char(10),
        a!richTextItem(
          text: {
            &amp;quot;or to report an issue&amp;quot;
          },
          size: &amp;quot;LARGE&amp;quot;
        )
      },
      align: &amp;quot;CENTER&amp;quot;,
      marginAbove: &amp;quot;MORE&amp;quot;
    ),
    a!richTextDisplayField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      value: {
        a!richTextItem(
          text:&amp;quot;Company Team Address&amp;quot;,
          link : a!safeLink(
            label: &amp;quot;emailaddress@company.com&amp;quot;,
            uri: &amp;quot;mailto://emailaddress@company.com&amp;quot;
            ),
           color: &amp;quot;#255be3&amp;quot;,
           size: &amp;quot;LARGE&amp;quot;,
           style:&amp;quot;STRONG&amp;quot;
            
          )
      },
      tooltip: &amp;quot;Click here to send us an email&amp;quot;,
      align: &amp;quot;CENTER&amp;quot;
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Contact Us Email within Site/Page</title><link>https://community.appian.com/thread/150325?ContentTypeID=1</link><pubDate>Thu, 24 Jul 2025 18:04:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9e42ab9d-da62-4e56-ba46-f9cf94571e31</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The parameter in the safelink is uri, not url.&lt;/p&gt;
&lt;p&gt;Try this code:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!linkField(
  links: a!safeLink(
    label: &amp;quot;test@test.com&amp;quot;,
    uri: &amp;quot;mailto:test@test.com&amp;quot;
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Contact Us Email within Site/Page</title><link>https://community.appian.com/thread/150324?ContentTypeID=1</link><pubDate>Thu, 24 Jul 2025 17:37:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:37d1070d-e45f-4cb3-b97d-660645dc3728</guid><dc:creator>Mirza-A88</dc:creator><description>&lt;p&gt;My apologies, also my first time posting in the Community section as well. Currently the entire page just goes blank as soon as I enter the link|safelink expression. The page just sort of grays out and doesn&amp;#39;t populate anything.&lt;/p&gt;
&lt;p&gt;So&amp;nbsp;this portion should have the backslashes removed from it, correct?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;url: &amp;quot;mailto://emailaddress@company.com&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;Here is the code again:&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!headerContentLayout(
  header: {
    a!cardLayout(
      contents: {
        a!richTextDisplayField(
          labelPosition: &amp;quot;COLLAPSED&amp;quot;,
          value: {
            a!richTextIcon(
              icon: &amp;quot;paw&amp;quot;,
              color: &amp;quot;#255be3&amp;quot;,
              size: &amp;quot;EXTRA_LARGE&amp;quot;
            )
          },
          align: &amp;quot;RIGHT&amp;quot;
        )
      },
      height: &amp;quot;AUTO&amp;quot;,
      style: &amp;quot;#0f1632&amp;quot;,
      marginBelow: &amp;quot;NONE&amp;quot;,
      showBorder: false
    )
  },
  contents: {
    a!sideBySideLayout(
      items: {
        a!sideBySideItem(
          item: a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {
              a!richTextIcon(
                icon: &amp;quot;question-circle&amp;quot;,
                color: &amp;quot;#255be3&amp;quot;,
                size: &amp;quot;EXTRA_LARGE&amp;quot;
              )
            },
            align: &amp;quot;CENTER&amp;quot;,
            marginAbove: &amp;quot;EVEN_MORE&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        )
      }
    ),
    a!richTextDisplayField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      value: {
        a!richTextItem(
          text: {
            &amp;quot;Questions, comments, concerns &amp;quot;
          },
          size: &amp;quot;LARGE&amp;quot;
        ),
        char(10),
        a!richTextItem(
          text: {
            &amp;quot;or to report an issue&amp;quot;
          },
          size: &amp;quot;LARGE&amp;quot;
        )
      },
      align: &amp;quot;CENTER&amp;quot;,
      marginAbove: &amp;quot;MORE&amp;quot;
    ),
    a!richTextDisplayField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      value: {
        a!richTextItem(
          text: {
            &amp;quot;Company Team Address&amp;quot;
          },
        link : 
        a!safeLink(
          label: &amp;quot;emailaddress@company.com&amp;quot;,
          url: &amp;quot;mailto://emailaddress@company.com&amp;quot;
          color: &amp;quot;#255be3&amp;quot;,
          size: &amp;quot;LARGE&amp;quot;,
          style: {
            &amp;quot;STRONG&amp;quot;
          }
        )
    )    
},
      tooltip: &amp;quot;Click here to send us an email&amp;quot;,
      align: &amp;quot;CENTER&amp;quot;
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Contact Us Email within Site/Page</title><link>https://community.appian.com/thread/150322?ContentTypeID=1</link><pubDate>Thu, 24 Jul 2025 17:03:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1f5a7d2d-1bcc-486f-a62e-4bb224783eda</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;This would make your code much more readable.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/62/pastedimage1753376430247v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Now, what do you experience when clicking that link.&lt;/p&gt;
&lt;p&gt;And, Appian can only display that link with a mailto-URL. When clicked, the browser will try to open the default email app on your computer.&lt;/p&gt;
&lt;p&gt;And that URL&amp;nbsp;should look like this: &amp;quot;mailto:name@bla.com&amp;quot;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>