<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to send email to N number of people present in a group with a custom link containing their email id? in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19072#M8428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For that, you might look at this post&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/thread/228061"&gt;How to design a process with a dynamic number of sub process tasks?&lt;/A&gt;&amp;nbsp;or this one &lt;A href="https://migration33.stage.lithium.com/thread/227618"&gt;How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?&lt;/A&gt;&amp;nbsp;As mentioned,&amp;nbsp;use&amp;nbsp;a user task&amp;nbsp;and set the assignees based on the users in your group.&lt;/P&gt;&lt;P&gt;As far as approving/rejecting the task via an email, you might look at &lt;B&gt;Ciju Joseph&lt;/B&gt;‌'s Email extension&amp;nbsp;&lt;A class="link-titled" href="https://github.com/cijujoseph/activiti-examples/tree/master/aps-email-listener-extension" title="https://github.com/cijujoseph/activiti-examples/tree/master/aps-email-listener-extension" rel="nofollow noopener noreferrer"&gt;activiti-examples/aps-email-listener-extension at master · cijujoseph/activiti-examples · GitHub&lt;/A&gt;. I'd guess that should help do what you want.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2018 17:06:15 GMT</pubDate>
    <dc:creator>jeffrosler</dc:creator>
    <dc:date>2018-06-14T17:06:15Z</dc:date>
    <item>
      <title>How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19065#M8421</link>
      <description>Hi all,I am doing a small POC in which I would be a fetching all the user's present in a particular group and sending a mail to all of them with a custom link as shown below:localhost:8080/customCall/user/{userid}where userid would be each user in the group. My mailing task is working for a single m</description>
      <pubDate>Tue, 12 Jun 2018 11:29:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19065#M8421</guid>
      <dc:creator>sreejith1</dc:creator>
      <dc:date>2018-06-12T11:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19066#M8422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming you want to do this as a step in your process, I'd suggest just creating a service task to send the emails. You can get the users in a group with the UserQuery class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;UserQuery query = identityService.createUserQuery().memberOfGroup("yourgroupid");&lt;BR /&gt;List&amp;lt;User&amp;gt; users = query.list();&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Just iterate over the List and send an email for each user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:14:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19066#M8422</guid>
      <dc:creator>jeffrosler</dc:creator>
      <dc:date>2018-06-14T15:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19067#M8423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do this without using the API in my Java application, is it possible to solely use activiti-app or activiti-rest for this purpose?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:56:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19067#M8423</guid>
      <dc:creator>sreejith1</dc:creator>
      <dc:date>2018-06-14T15:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19068#M8424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a little unclear what you're asking. Can you explain how you're using activiti in your POC and where&amp;nbsp;and when you want to send your emails?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 16:12:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19068#M8424</guid>
      <dc:creator>jeffrosler</dc:creator>
      <dc:date>2018-06-14T16:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19069#M8425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have deployed activiti-app.war, activiti-rest.war in apache tomcat and running it as a standalone application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 16:41:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19069#M8425</guid>
      <dc:creator>sreejith1</dc:creator>
      <dc:date>2018-06-14T16:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19070#M8426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And you're using it to do what?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 16:48:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19070#M8426</guid>
      <dc:creator>jeffrosler</dc:creator>
      <dc:date>2018-06-14T16:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19071#M8427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to initiate a normal workflow where a mail would be send to all the people in a particular group and the person can approve or reject the task directly from the mail. I have configured MySQL as the backend.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 16:54:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19071#M8427</guid>
      <dc:creator>sreejith1</dc:creator>
      <dc:date>2018-06-14T16:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to send email to N number of people present in a group with a custom link containing their email id?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19072#M8428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For that, you might look at this post&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/thread/228061"&gt;How to design a process with a dynamic number of sub process tasks?&lt;/A&gt;&amp;nbsp;or this one &lt;A href="https://migration33.stage.lithium.com/thread/227618"&gt;How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?&lt;/A&gt;&amp;nbsp;As mentioned,&amp;nbsp;use&amp;nbsp;a user task&amp;nbsp;and set the assignees based on the users in your group.&lt;/P&gt;&lt;P&gt;As far as approving/rejecting the task via an email, you might look at &lt;B&gt;Ciju Joseph&lt;/B&gt;‌'s Email extension&amp;nbsp;&lt;A class="link-titled" href="https://github.com/cijujoseph/activiti-examples/tree/master/aps-email-listener-extension" title="https://github.com/cijujoseph/activiti-examples/tree/master/aps-email-listener-extension" rel="nofollow noopener noreferrer"&gt;activiti-examples/aps-email-listener-extension at master · cijujoseph/activiti-examples · GitHub&lt;/A&gt;. I'd guess that should help do what you want.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 17:06:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-send-email-to-n-number-of-people-present-in-a-group-with/m-p/19072#M8428</guid>
      <dc:creator>jeffrosler</dc:creator>
      <dc:date>2018-06-14T17:06:15Z</dc:date>
    </item>
  </channel>
</rss>

