<?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 we can invoke a process model through email?</title><link>https://community.appian.com/discussions/f/process/11613/how-we-can-invoke-a-process-model-through-email</link><description>Hi 
 How we can invoke a process model through email? 
 Thanks in Advance</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51192?ContentTypeID=1</link><pubDate>Fri, 29 Dec 2017 02:41:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1c92eff8-e5b6-44ae-ae22-f60c8f33f577</guid><dc:creator>Srinivas Thota </dc:creator><description>In start process configure the receive message node, in setup tab select the attribute email and set condition email and email where u want to receive, by this you can invoke process model through email&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51191?ContentTypeID=1</link><pubDate>Fri, 29 Dec 2017 02:23:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:173ea923-ad9e-445d-9c85-7e440d888f24</guid><dc:creator>Raj</dc:creator><description>In Process Model properties, make sure you select the checkbox for &amp;quot;Allow anyone to fire triggers&amp;quot;.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51173?ContentTypeID=1</link><pubDate>Thu, 28 Dec 2017 12:03:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e46e1608-6bb6-46d8-8ddd-2cfa5a8303c9</guid><dc:creator>Amit Mishra</dc:creator><description>Short and simple answer (as below) :&lt;br /&gt;
Process model should be public. &lt;br /&gt;
An anonymous email id need to be configured to custom.properties. Email Id- uuid@environment.com&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Amit Mishra&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51159?ContentTypeID=1</link><pubDate>Wed, 27 Dec 2017 16:29:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2d747a69-0d11-46ac-b7a0-70fb5633b4e5</guid><dc:creator>mk</dc:creator><description>The process will essentially have it&amp;#39;s own e-mail address when you follow the instructions in the link that Ramanjaneyulu provided.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51156?ContentTypeID=1</link><pubDate>Wed, 27 Dec 2017 12:12:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:53cd0510-1b4d-4301-81d5-61b8dd34b0d6</guid><dc:creator>aswinb608</dc:creator><description>Select the properties of the start node and you can invoke a trigger through an email. The process must be available to be invoked publicly, which is a setting in properties of the process. More details can be found on :&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/17.4/Sending_an_Email_Message_to_a_Process.html"&gt;docs.appian.com/.../Sending_an_Email_Message_to_a_Process.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51151?ContentTypeID=1</link><pubDate>Wed, 27 Dec 2017 09:00:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ef30cfc5-96e2-40a4-83d3-80b126f58c50</guid><dc:creator>aloks0189</dc:creator><description>Hi &lt;a href="/members/aswinis"&gt;Aswini &lt;/a&gt;  as per my understanding, web API is the best option for you to trigger a process using a link, but when you talk about through an email, in such case an email can be triggered to anyone who is not aware of Appian system, the moment they click on the link, he will be redirected to Appian login screen, which do not make any sense to business user, who is not the part of Appian.&lt;br /&gt;
&lt;br /&gt;
In such case, you can build a servlet plugin which will use basic authentication, so while sending an email, we need to send servlet url instead of Web API url, where the url will contain some certain parameter, which will identify the process or its parameter.&lt;br /&gt;
&lt;br /&gt;
Now the moment users clicks on servlet link through his email, he will be asked for basic authentication using html standard pop-up(which can be sent to the user in its email body) and once user provides the authentication details, servlet will authenticate the user and will login him into Appian and will send the same parameter to its configured Web API, and once the request gets delivered to Appian, it can easily determine &amp;amp; invoke the target process where process model or its parameters can be identified using the passed parameter to servlet through email link.&lt;br /&gt;
&lt;br /&gt;
I know it&amp;#39;s a bit complex, but I believe it&amp;#39;s the only way you have, specially when you are on cloud premises and don&amp;#39;t want to build a separate web application and deploy in other server to integrate with Appian.&lt;br /&gt;
&lt;br /&gt;
Hope this will give you high level understanding about the process which you need to follow when you want to invoke a process using an email link.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51128?ContentTypeID=1</link><pubDate>Tue, 26 Dec 2017 14:21:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:768376ef-2c68-4637-9fc1-d1faddd129d1</guid><dc:creator>Dastagiri Dudekula</dc:creator><description>To setup the link in the email:&lt;br /&gt;
Create an HTML template with link tag.&lt;br /&gt;
Create an expression to for generating url for the process model by passing process id. Use urlwithparameters() for url for task or process model.&lt;br /&gt;
Use the template in the send email node&lt;br /&gt;
Use the expression for link by passing process model id&lt;br /&gt;
&lt;br /&gt;
This will generate link in the email. Once the link is clicked it will direct to the target process.&lt;br /&gt;
&lt;br /&gt;
I used for Record link in the emal as follows&lt;br /&gt;
&lt;br /&gt;
Inside the HTML Template&lt;br /&gt;
...&lt;br /&gt;
Click &amp;lt;a href=&amp;quot;###link###&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;here&amp;lt;/a&amp;gt; to view the record.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
Expression that forms the record url which will be mapped to above link field in html template&lt;br /&gt;
if(ri!recordId=0,&amp;quot;&amp;quot;,&lt;br /&gt;
urlforrecord(cons!UAGM_EXTERNAL_RECORD,ri!recordId))&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51116?ContentTypeID=1</link><pubDate>Tue, 26 Dec 2017 11:56:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:72b24590-0660-4ee0-aa7b-ee86fa7434d5</guid><dc:creator>Aswini </dc:creator><description>Thank you&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How we can invoke a process model through email?</title><link>https://community.appian.com/thread/51113?ContentTypeID=1</link><pubDate>Tue, 26 Dec 2017 11:08:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:accc6915-97f9-4a91-972e-39a27ec2cc4d</guid><dc:creator>Rama Thummala</dc:creator><description>&lt;p&gt;&lt;a href="/members/aswinis"&gt;Aswini &lt;/a&gt;&amp;nbsp;, I haven&amp;#39;t worked on this. But the below link would help you.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/17.4/Sending_an_Email_Message_to_a_Process.html"&gt;Sending an Email Message to a Process&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>