Button instead of link in Email | XM Community
Solved

Button instead of link in Email


Userlevel 2
Badge +5
Is there any way to have clickable button in a survey invite instead of the link/URL?
icon

Best answer by JenCX 6 May 2019, 22:14

View original

5 replies

Userlevel 7
Badge +11
Should be easy enough: Create or choose an image, then upload it into your email invite. Then, right click on it and choose Image Properties. On the second tab, you can input the link to the survey.
Hello @chasmasb

In the HTML view put the below code

<form style="display: inline" action="${l://SurveyLink?d=Take the Survey}" method="get">
<button>Visit Website</button>
</form>

You can style the button using inline-css
Badge +2

Has anyone gotten this to work?

Badge

Button instead of link in Email

I tried to follow instructions which I found here. I managed to install the image but when I send an email the image either does not appears or it appears but it is not active. Could you please advise what I could change. I could also share the code I use if needed. Thank you in advance.

Userlevel 5
Badge +15

Hi @chasmasb,

You can also try this if the images don’t load up in the email. Insert the below code in the source of the email distribution:

<table style="border: 1px solid black; background-color:yellow; max-width:200px">
<tr>
<td><a href="${l://SurveyURL}">Click here</a></td>
</tr>
</table>

Change the colors where ever required OR Add <center>...Above code...</center> to center align the button in center.

Leave a Reply