Hi James,
Thanks for your question. It is possible to read an existing mailbox.
See for more information the Mendix E-mail connector: https://docs.mendix.com/appstore/connectors/email-connector/
If I may give you a suggestion, I think it is much easier for the recipient if the email contains two links: Approve and Reject.
The chance of things going wrong is less. And it's also easier to build this in Mendix with the help of the deep link module.
I hope, this may help you!
Hi James,
Step 1. You can use the Ckeditor widget in the email template to create a customized button for “Approved” or “Rejected”.
Refer this template.
Step 2: I’m sharing the customized code here to create a button and access the deep link module.
<td style="background-color:white; text-align:center"><a href="http://localhost:8088/link/Approved" style="background: green; border: 15px solid green; font-family: tahoma; font-weight: 10;
letter-spacing: 2px; mso-height-rule: exactly; line-height: 10px; text-align: center; text-decoration: none; display: block; border-radius: 10px; font-weight: 10; padding:5px 20px 5px 20px;"> <span style="color:#ffffff">Approved</span> </a>. <a href="http://localhost:8088/link/Denied" style="background: red; border: 15px solid red; font-family: tahoma; font-weight: 10;
letter-spacing: 2px; mso-height-rule: exactly; line-height: 10px; text-align: center; text-decoration: none; display: block; border-radius: 10px; font-weight: 10;padding:5px 20px 5px 20px; "> <span style="color:#ffffff">Denied</span> </a> . <a href="http://localhost:8088/link/OnHold" style="background: #48248f; border: 15px solid #48248f; font-family: tahoma; font-weight: 10;
letter-spacing: 2px; mso-height-rule: exactly; line-height: 10px; text-align: center; text-decoration: none; display: block; border-radius: 10px; font-weight: 10;padding:5px 20px 5px 20px; "> <span style="color:#ffffff">On Hold </span> </a></td>
Step 3: Paste it into the CKeditor widget.
This is a reference for deep link URL “a href="http://localhost:8088/link/Approved” I have configured the URL in the button to trigger the deep link microflow.