Open a custom link on a button click (mailto)

0
When I click on a button I need to open outlook to send an email to a particular user. I can open “mailto” link in order to do it, here is an example: https://codepen.io/MaxVelichkin/pen/vYKXJOY But the only problem is that the email and the subject are hardcoded in the button. Is there a way to dynamically add the email of the user to the link?  For example, can I customize the link in a microflow and insert some user's email there, and then open this link?
asked
2 answers
0

use html snippet widget and right below code inside contents

<a href="mailto:xyz@example.com">Click here to mail</a>

answered
0

Use this https://appstore.home.mendix.com/link/app/1426/
you can setup a microflow to return a string (html in this case) and set the widget to render as html.

answered