Hello,
There is any way to send an email as behaviour of mailto in html?
Example:
<a href=”mailto:address@email.com”>Email</a>
Thanks for any replies!
You can use HTML directly in any label or button. However the html text will be limited to the inner label area.
The best way to control the client browser is through a client-side event. You can drop the JavaScript component on the container with the button, you’ll find 3 new properties added to the button. Edit the JavaScriptEvents property and add a new event: select “execute”, then in the JavaScript field type location.href=”mailto:test@email.com”. See screenshot below:
Thanks, you’ve solved my problem!
Please login first to submit.