title | category | menu_order | tags | |||
---|---|---|---|---|---|---|
Install & Configure the SMTP Email Module |
Integration |
42 |
|
Mendix applications rarely exist in isolation. Many developers find that the apps they build need to alert people in other parts of the business about important activities. The best solution for this is that ubiquitous notification framework: email. If your company has an SMTP exchange, Mendix can leverage that server to send emails directly from your application. The SMTP Email module makes this easy by providing settings, error logs, and message queues with just a few short configuration steps.
This how-to will teach you how to do the following:
- Install the SMTP Email module into your application
- Send an email from a Mendix app using your own SMTP relay
- Perform administrative email tasks at runtime
- Set up an email queue
Before starting this how-to, make sure you have completed the following prerequisites:
- Configure a working SMTP relay for your email server
- Know how to install modules from the Mendix App Store
- Know how to create pages and microflows in Studio Pro
In this section, you will install the SMTP Email module and integrate it into an existing Mendix application.
-
Download the SMTP Email module from the Mendix App Store:
{{% alert type="info" %}}The SMTP Email module is community-supported. For details, see section 2.2 Community Category of App Store Content Support. {{% /alert %}}
-
Download and set up the Encryption Module, which will allow for protected passwords.
{{% alert type="warning" %}}As with all App Store modules, it is important that you do NOT modify any contents within the module itself. If you do, you run the risk of having your changes overwritten upon the next update. {{% /alert %}}
-
Create a new module called EmailCustomizations to house the project-specific pages and flows:
-
Create a new page called EmailAdmin.
-
Drop in the SMTPEmailModule.Administration snippet to give you access to those pages.
-
Add the EmailAdmin page to your app's Navigation:
-
Run your application and head to the SMTP settings page that has just been exposed. On the Settings tab, enter the SMTP credentials of the existing relay:
-
Click Save to commit the settings to the database.
-
Send a test email. The module includes a Test button at the bottom of the settings page. This will allow you to enter a destination email address that should receive a test message to make sure things are working correctly.
In this section, you will learn how to build a microflow in your application that can send an email using the credentials configured in section 3 Setting Up the Module. The actual sending of an email in the SMTP Email module is accomplished through the SMTPEmailModule.SendEmailMessage microflow (accessible via SMTPEmailModule > Private > Email):
This flow takes in a number of parameters, including To, From, Subject, and the email settings. The Send Email Java Action is what actually bounces the email to the SMTP (as long as you define the key input information, you have a lot of flexibility about what emails you send).
To make the process a little simpler, the SMTPEmailModule includes an Email entity in the domain model. This entity brings all the important attributes together in one place:
Making an email is as simple as generating an Email object, populating the values, and then passing it to the SendEmail microflow. This section demonstrates how to build a page where a user can enter an address, subject, and content, and then send that out from the Mendix application.
To send an email in a microflow, follow these steps:
-
Create a page called MakeANewEmail using a vertical form:
-
On this page, allow users to edit the following values: To, CC, BCC, Subject, and Plain Body:
-
Create a microflow called IVK_CreateNewEmail that generates a new email object and passes it to the page from step 2 above. Add this microflow to your navigation:
-
On the MakeANewEmail page, delete the Save button and add an action that calls a microflow. Call this microflow IVK_UserManualEmailSend:
{{% alert type="warning" %}}Don’t forget to put a progress bar on the call for your action button. In the time it takes to send the email, you want users to know that the app is still working.
{{% /alert %}}
-
Change the button's caption to Send.
-
Go to the IVK_UserManualEmailSend microflow to edit it and add an Email parameter.
-
Add a call to the IVK_SendEmail sub-microflow in the SMTP Email module, and then add a Close page activity:
-
Add a Change object before the sub-microflow call. Set the Object as Email.
-
Because users are only editing the plain text of the email on the previous page, change the email so that the UseOnlyPlainText Boolean is set to true:
Once a user logs into the application, they are presented with a page where they can write a custom email and send it to a desired address using SMTP within a Mendix application:
Beyond simply creating and sending emails, the SMTP Email module comes with a functioning email queue that is easy to set up. Having an email queue can be very useful for controlling the email load volume or sending nightly updates for users to read in the morning.
To set up the email queue, follow these steps:
- Create an email.
- Instead of sending, add that email to the queue.
- Run a scheduled event that sets off all the queued emails at once.
To add this to our sample application, do the following:
-
Add a new action button to the MakeANewEmail page that calls a new microflow called IVK_QueueEmail:
-
Change this button's caption to Queue.
-
Configure this microflow to change the email object so that the status is QUEUED and the queued Boolean is set to true:
-
The module already contains a scheduled event called SE_SendQueuedEmails, which retrieves the emails in the queue and sends them out. All that is left to do is to turn this scheduled event on, and your email queue is set to go!
The SMTP email module contains a number of other powerful tools. Some of the enhancements you can add to this include the following:
-
Allow users to edit the HTML text of the email using a rich text editor
- This will give users even more power to adjust the look and feel of the emails
- Don’t forget to set the UseOnlyPlainText value to false before sending
-
Add some validation to the form or microflow to make sure users don’t send email messages with no subject, body, or address
-
Auto-generate emails in workflow steps to have the app send out emails from SMTP behind the scenes