-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsend-email.bpmn
66 lines (66 loc) · 3.77 KB
/
send-email.bpmn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" id="Definitions_0o87biy" targetNamespace="http://bpmn.io/schema/bpmn" modeler:executionPlatform="Camunda Cloud" modeler:executionPlatformVersion="1.0.0">
<bpmn:process id="send-email" name="Send Email" isExecutable="true">
<bpmn:extensionElements>
<zeebe:userTaskForm id="userTaskForm_15j79nd">{"components":[{"id":"textfield1","key":"message_content","label":"E-Mail Content","type":"textfield","parent":"default1","path":["components",0],"description":"Please enter the content of the E-Mail message","validate":{"required":true}}],"type":"default","id":"default1","path":[]}</zeebe:userTaskForm>
</bpmn:extensionElements>
<bpmn:startEvent id="StartEvent" name="Email requested">
<bpmn:outgoing>Flow_19f2xg6</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_19f2xg6" sourceRef="StartEvent" targetRef="enterMessageTask" />
<bpmn:sequenceFlow id="Flow_0xoo3ml" sourceRef="enterMessageTask" targetRef="sendEmailTask" />
<bpmn:serviceTask id="sendEmailTask" name="Send Email">
<bpmn:extensionElements>
<zeebe:taskDefinition type="email" retries="" />
</bpmn:extensionElements>
<bpmn:incoming>Flow_0xoo3ml</bpmn:incoming>
<bpmn:outgoing>Flow_156f3q7</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:endEvent id="EndEvent" name="Email sent">
<bpmn:incoming>Flow_156f3q7</bpmn:incoming>
</bpmn:endEvent>
<bpmn:userTask id="enterMessageTask" name="Enter Message">
<bpmn:extensionElements>
<zeebe:taskDefinition type="humanTask" />
<zeebe:formDefinition formKey="camunda-forms:bpmn:userTaskForm_15j79nd" />
</bpmn:extensionElements>
<bpmn:incoming>Flow_19f2xg6</bpmn:incoming>
<bpmn:outgoing>Flow_0xoo3ml</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sequenceFlow id="Flow_156f3q7" sourceRef="sendEmailTask" targetRef="EndEvent" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="send-email">
<bpmndi:BPMNEdge id="Flow_156f3q7_di" bpmnElement="Flow_156f3q7">
<di:waypoint x="548" y="160" />
<di:waypoint x="622" y="160" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0xoo3ml_di" bpmnElement="Flow_0xoo3ml">
<di:waypoint x="369" y="160" />
<di:waypoint x="448" y="160" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_19f2xg6_di" bpmnElement="Flow_19f2xg6">
<di:waypoint x="195" y="160" />
<di:waypoint x="269" y="160" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent">
<dc:Bounds x="159" y="142" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="165" y="185" width="24" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_06u1rs5_di" bpmnElement="sendEmailTask">
<dc:Bounds x="448" y="120" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1oy8ygp_di" bpmnElement="EndEvent">
<dc:Bounds x="622" y="142" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="630" y="185" width="20" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0s2tnku_di" bpmnElement="enterMessageTask">
<dc:Bounds x="269" y="120" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>