Button instead of link in Email | XM Community
Skip to main content
Solved

Button instead of link in Email

  • May 6, 2019
  • 5 replies
  • 559 views

Forum|alt.badge.img+5
Is there any way to have clickable button in a survey invite instead of the link/URL?

Best answer by JenCX

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.

5 replies

JenCX
Level 5 ●●●●●
Forum|alt.badge.img+11
  • Level 5 ●●●●●
  • Answer
  • May 6, 2019
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.

  • May 6, 2019
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

Forum|alt.badge.img+2
  • Level 1 ●
  • September 21, 2022

Has anyone gotten this to work?


Forum|alt.badge.img

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.


Sowrabh1993
QPN Level 5 ●●●●●
Forum|alt.badge.img+15
  • QPN Level 5 ●●●●●
  • July 10, 2023

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.