<?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>Custom E-mail notification</title><link>https://community.appian.com/discussions/f/process/24491/custom-e-mail-notification</link><description>Hi team, 
 
 
 How can I add Environment name detail in 
 Notification/ error email subject? 
 
 
 
 Thanks, 
 Kiran</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/137800?ContentTypeID=1</link><pubDate>Tue, 09 Jul 2024 11:39:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0d8f7eb0-da5d-4046-abb2-e514a8a5a8ac</guid><dc:creator>kirankhemnar</dc:creator><description>&lt;p&gt;{&lt;br /&gt; a!localVariables(&lt;br /&gt; local!rows: a!forEach(&lt;br /&gt; items: enumerate(50) + 1,&lt;br /&gt; expression: {&lt;br /&gt; id: fv!item,&lt;br /&gt; selected: false,&lt;br /&gt; value: &amp;quot;Value &amp;quot; &amp;amp; fv!item&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; a!formLayout(&lt;br /&gt; label: &amp;quot;Editable Grid with Checkboxes&amp;quot;,&lt;br /&gt; contents: {&lt;br /&gt; a!gridLayout(&lt;br /&gt; label: &amp;quot;Grid&amp;quot;,&lt;br /&gt; data: local!rows,&lt;br /&gt; columns: {&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Select&amp;quot;,&lt;br /&gt; value: a!checkboxField(&lt;br /&gt; label: &amp;quot;&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; value: a!forEach(&lt;br /&gt; items: local!rows,&lt;br /&gt; expression: fv!item.selected&lt;br /&gt; ),&lt;br /&gt; saveInto: a!forEach(&lt;br /&gt; items: local!rows,&lt;br /&gt; expression: a!save(&lt;br /&gt; local!rows[fv!index].selected,&lt;br /&gt; fv!value&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;ID&amp;quot;,&lt;br /&gt; value: a!textField(&lt;br /&gt; label: &amp;quot;&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; readOnly: true,&lt;br /&gt; value: a!forEach(&lt;br /&gt; items: local!rows,&lt;br /&gt; expression: fv!item.id&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Value&amp;quot;,&lt;br /&gt; value: a!textField(&lt;br /&gt; label: &amp;quot;&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; value: a!forEach(&lt;br /&gt; items: local!rows,&lt;br /&gt; expression: fv!item.value&lt;br /&gt; ),&lt;br /&gt; saveInto: a!forEach(&lt;br /&gt; items: local!rows,&lt;br /&gt; expression: a!save(&lt;br /&gt; local!rows[fv!index].value,&lt;br /&gt; fv!value&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; buttons: a!buttonLayout(&lt;br /&gt; primaryButtons: {&lt;br /&gt; a!buttonWidget(&lt;br /&gt; label: &amp;quot;Submit&amp;quot;,&lt;br /&gt; submit: true,&lt;br /&gt; style: &amp;quot;PRIMARY&amp;quot;&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/137799?ContentTypeID=1</link><pubDate>Tue, 09 Jul 2024 11:37:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b7b23a45-84d4-4d32-b192-1a75a90af33a</guid><dc:creator>kirankhemnar</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!localVariables(
    local!rows: a!forEach(
      items: enumerate(50) + 1,
      expression: {
        id: fv!item,
        selected: false,
        value: &amp;quot;Value &amp;quot; &amp;amp; fv!item
      }
    ),
    a!formLayout(
      label: &amp;quot;Editable Grid with Checkboxes&amp;quot;,
      contents: {
        a!gridLayout(
          label: &amp;quot;Grid&amp;quot;,
          data: local!rows,
          columns: {
            a!gridColumn(
              label: &amp;quot;Select&amp;quot;,
              value: a!checkboxField(
                label: &amp;quot;&amp;quot;,
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                value: a!forEach(
                  items: local!rows,
                  expression: fv!item.selected
                ),
                saveInto: a!forEach(
                  items: local!rows,
                  expression: a!save(
                    local!rows[fv!index].selected,
                    fv!value
                  )
                )
              )
            ),
            a!gridColumn(
              label: &amp;quot;ID&amp;quot;,
              value: a!textField(
                label: &amp;quot;&amp;quot;,
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                readOnly: true,
                value: a!forEach(
                  items: local!rows,
                  expression: fv!item.id
                )
              )
            ),
            a!gridColumn(
              label: &amp;quot;Value&amp;quot;,
              value: a!textField(
                label: &amp;quot;&amp;quot;,
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                value: a!forEach(
                  items: local!rows,
                  expression: fv!item.value
                ),
                saveInto: a!forEach(
                  items: local!rows,
                  expression: a!save(
                    local!rows[fv!index].value,
                    fv!value
                  )
                )
              )
            )
          }
        )
      },
      buttons: a!buttonLayout(
        primaryButtons: {
          a!buttonWidget(
            label: &amp;quot;Submit&amp;quot;,
            submit: true,
            style: &amp;quot;PRIMARY&amp;quot;
          )
        }
      )
    )
  )
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/94584?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 09:08:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b1218eb5-728c-46b5-8fda-81478fcd4417</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;essentially the error message towars the admins/designers -&amp;gt; no customizing possible&amp;nbsp;&lt;br /&gt;But you can see the environment name by hovering about the link in the bottom section.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/94582?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 08:40:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:14d573fb-dd9a-4a25-b822-9ff5f28b103b</guid><dc:creator>kirankhemnar</dc:creator><description>&lt;p&gt;The email that comes when the process model got fails&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/94581?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 08:40:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b8efeec9-6c46-4243-87f6-291a2cbcf5e4</guid><dc:creator>kirankhemnar</dc:creator><description>&lt;p&gt;The email that comes when the process model got fails&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/94579?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 08:01:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:87e8933f-6f83-459a-bc95-df4560486df6</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Are you talking about email sent from Send email Node in process?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom E-mail notification</title><link>https://community.appian.com/thread/94577?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 07:57:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ef87cff3-4e17-423f-9316-2a9aa9fb78f7</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Which email do you mean? For example, the emails sent by process model alerts cannot be customized.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>