Button to send Email

Answered
0
0

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 must to post comments
Best Answer
0
0

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:

screen

  • You must to post comments
0
0

Thanks, you’ve solved my problem!

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.