How to send list of objects in mail using email connector

0
Hello, I am using Mendix 10.6.4. I am using a module called Email Connector. The requirement is user can select multiple article from the list shown in UI and then the list of those selected article should be sent in mail. How can we send list of objects in mail using email connector.  Please help me out as it is urgent.   Thank you
asked
2 answers
0

The easiest way is to modify this microflow that comes with Email Connector: Sample_ACT_CreateEmailFromTemplateAndThenSend

Look at the attached example. It uses PDF files but it is still a list

Screenshot 2024-05-17 091045.png

answered
0

Hello Trishla T, 

 

Back in the days we had to add them in a html table format with tr and th so a string that was created with these elements:

 

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>

 

I am not sure if this is still necessary but i think it is at least still working ! 

 

I keep hanging in here to hear maybe of some smart solutions because i think you are not the only one with this problem!

 

Hope this helps,

 

Good luck!

answered