Email Configuration

0
Hi I am working on the email configuration. In my application, I have 3 entities customer, venue and offer. Whenever I will add a new offer and venue I want to send the details of the same to every registered customer. Thanks
asked
3 answers
0

Hi Aarti,

you have to achieve this step by step.

  1. retrieve all the user emails required.
  2.  Concat them into a string with comma separation store in a variable.
  3. create custom Email template and pass the string variable in To address of the email template
answered
0

Hi Aarti,

 

This blog post by Ryan Mocke describes how to send emails using Mendix (modules: MxModel reflection and Email)

https://medium.com/mendix/how-to-send-styled-html-emails-using-email-module-with-templates-and-mxmodel-reflection-mendix-3d80d18019b9

In the docs of Mendix you can find additional info on the configuration and limitations

answered
0

An option is to use EmailService.

No configuration or template-creation needed, just call one microflow and off your email goes.

answered