How to make href in text

0
I was trying to put a href to my text. I also found already this question:  https://community.mendix.com/link/questions/98146   This is my html: <br> <a href="http://localhost:8080/index.html?profile=Responsive”> Hier </a> die Störung online ansehen. And as output i got this: <a href="http://localhost:8080/index.html?profile=Responsive”> Hier die Störung online ansehen. So yeah i wanted to have the link hidden behind the word “hier” But not working.      
asked
2 answers
3

Hi Nico,
You can write your Html code in the body of the email template. And in the a tag you can pass tokens in runtime. You can Configure tokens in Email Template Configuration. 

 

Example html code : <a href="{%URL%}">Click here</a>

For your Reference:


 

Now you have to add the tokens/Placeholders in the email template configuration.

 

Hope it Helps!!

answered
1

There is a better way to do it.

Configure a container on your page, within this container you can place multiple texts ( be sure to set render mode to text) and a link button.

When rendered, the elements will be aligned next to each other.

 

In Studio Pro:

 

result in Design mode:

answered