Hello! Trying to use the camunda-bpm-mail-core on a service task, but not getting anywhere…
Camunda Enterprise 7.6.0 embedded
I have included the dependancy in my POM…
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
<artifactId>camunda-bpm-mail-core</artifactId>
</dependency>
I have verified that the Connect plugin is enable as defined here Here …
<plugins>
<plugin>
<class>org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin</class>
</plugin>
</plugins>
My Service task looks simple…
<serviceTask id="sid-00EAB01D-B273-4E0D-9ED6-F194E6BADB1F" name="inform call center">
<extensionElements>
<camunda:connector>
<camunda:inputOutput>
<camunda:inputParameter name="from">me@there.com</camunda:inputParameter>
<camunda:inputParameter name="to">test@there.com</camunda:inputParameter>
<camunda:inputParameter name="subject">Test</camunda:inputParameter>
<camunda:inputParameter name="text">Test</camunda:inputParameter>
</camunda:inputOutput>
<camunda:connectorId>mail-send</camunda:connectorId>
</camunda:connector>
</extensionElements>
</serviceTask>
However, when I build I get the error…
* One of the attributes 'class', 'delegateExpression', 'type', or 'expression' is mandatory on serviceTask. | incidentManagement.bpmn | line 303 | column 90
Any help appreciated!