Working with Mail Tasks
The following scenario simulates a simple leave approval business process, in which an employee fills a form and submits the leave request to the manager and the manager approves or rejects it. The employee receives an email if the manager approves the request. Otherwise, if the manager rejects it, the employee will be able to resend the leave request by adjusting it.
Before you begin,
- Download the product installer from here, and run the installer.
Let's call the installation location of your product the<EI_HOME>
directory.Note that if you used the product installer to install your product, the
<EI_HOME>
is located in a place specific to your OS as shown below:OS Home directory Mac OS /Library/WSO2/EnterpriseIntegrator/6.3.0
Windows C:\Program Files\WSO2\EnterpriseIntegrator\6.3.0\
Ubuntu /usr/lib/wso2/EnterpriseIntegrator/6.3.0
CentOS /usr/lib64/EnterpriseIntegrator/6.3.0
Select and download the relevant WSO2 EI tooling ZIP file based on your operating system from here and then extract the ZIP file.
The path to this folder is referred to as<EI_TOOLING>
throughout this tutorial.Getting an error message? See the troubleshooting tips given under Installing Enterprise Integrator Tooling.
Importing artifacts
If you did not try the Working with Exclusive Gateways tutorial yet, follow the steps below to import its artifacts as you will be extending on that.
- Download the pre-packaged project and extract it to a preferred location. This contains the artifacts of the Working with Exclusive Gateways tutorial.
- Open the WSO2 EI Tooling environment.
- Click File, and click Import.
- Expand the WSO2 category, select Existing WSO2 Projects into workspace and click Next.
- Click Browse, select the file you extracted and upload it.
- In the Package Explorer, double click on the name of the BPMN diagram to view the BPMN artifacts you imported.
Creating new artifacts
The next step of the process is adding a Mail Task to send an email if the manager approves the leave request. Follow the steps below to implement this using BPMN artifacts.
- Right click on the connection arrow, which connects the Review leave request User Task to the End Event and click Delete.
- Drag and drop a Mail Task to the canvas.
- Click on the Mail Task, and change the value of the Name field to
Send confirmation email
in the General section of the Properties tab. - Hover your mouse pointer over the Exclusive Gateway, and click on the arrow icon (i.e., the Create Connection option) and connect it to the Send confirmation email Mail Task.
- Hover your mouse pointer over the Send confirmation email Mail Task, and click on the arrow icon (i.e., the Create Connection option) and connect it to the End Event.
- Click on the arrow, which connects the Exclusive Gateway to the Send confirmation email Mail Task and enter
${vacationApproved == 'true'}
as the value for Condition in the Main config section of the Properties tab. - Press Ctrl+S to save all the artifacts, which you created in WSO2 EI Tooling.
The model is now complete as the necessary logic has been applied.
Configuring the Send confirmation email Mail Task
- In the Main Config section of the Properties tab (of the Mail Task), fill the respective fields (i.e., To, From, Subject). You can give the Subject as
Leave approved!
. In the Non-HTML field of the Main Config section, enter
Hi ${employeeName}, your leave request is approved
. The variable will be used to create the mail body.Copy the following JAR files into the
<EI_HOME>/lib
directory and restart the Business Process profile server instance.In the
<EI_HOME>/wso2/business-process/conf/activiti.xml
file, add the following properties under the<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration">
property as shown below, to enable the Gmail configurations.Replace the
mailServerHost
andmailServerPort
property values as follows:<property name="mailServerHost" value="smtp.gmail.com"/> <property name="mailServerPort" value="587"/>
Add the following properties:
<property name="mailServerDefaultFrom" value="<ENTER_A_VALID_SMTP_EMAIL_ADDRESS>"/> <property name="mailServerUseTLS" value="true"/> <property name="mailServerUsername" value="<ENTER_A_VALID_SMTP_EMAIL_ADDRESS>"/> <property name="mailServerPassword" value="<ENTER_THE_EMAIL_PASSWORD>"/>
If you are using Gmail to try out this scenario, you may need to enable IMAP access for Gmail. For more information, see Enable IMAP settings in Gmail. Also, if you receive an authentication error, you may have to adjust your account access settings in Gmail as well. For more information, see Allowing less secure apps to access your account.
Deploying the artifacts
- For instructions on creating the deployable artifacts, see Creating the deployable archive.
- For instructions on deploying them, see Deploying BPMN artifacts.
Creating the user
- Log in to the Management Console of the Business Process profile.
- Click Configure → Users and Roles → Add → Add New User.
Enter the below details to create a user called
manager
and click Next.Enter both the User Name and the Password as
manager
.In the next screen, assign the user to the
admin
role and click Finish.You view the new user you created as shown below.
Testing the output
Follow the steps below to test the output.
- Log in to the BPMN-explorer at https://localhost:9445/bpmn-explorer using
admin
for both the username and password. - Click PROCESSES in the top menu, and click the Start option of the Leave Approval Process.
Initiate the process by filling the form and click Start.
You view a pop-up message upon successful process initiation.
Initiate the process again by filling the form again and click Start.
You create two tasks to test the output of both leave approval and leave rejection.
- Log out and log in again using
manager/manager
credentials. - Click TASKS and then click MY TASKS. You view two tasks created.
Click on the first task, select Approve from the drop down list and click Complete Task.
An email will be sent to the employee confirming that one of your leave requests was approved by the manager.
- Click TASKS and then click MY TASKS again, click on the second task, which is left now, select Reject from the drop down list and click Complete Task.
- Log out and log in again with
admin/admin
credentials, and click TASKS → MY TASKS.
You view the Adjust vacation request Task. - Click on the Adjust vacation request Task, change the details and click Complete Task to resend the leave application.
- Log out and log in again with
manager
/manager
credentials, and click TASKS → MY TASKS. - Click on task, select Approve from the drop down list and click Complete Task.
Another email will be sent to the employee confirming that your second leave request was also approved by the manager.