${m://lastname} & ${m://firstname} : from UPPERCASE to CAPITALIZE (html code) | XM Community
Solved

${m://lastname} & ${m://firstname} : from UPPERCASE to CAPITALIZE (html code)

  • 24 June 2021
  • 4 replies
  • 158 views

Userlevel 3
Badge +10
  • QPN Level 2 ●●
  • 75 replies

I have a problem with data. The first and last names that are loaded in Qualtrics are all capital letters. Unfortunately, I have no way to act on this data before its Qualtrics integration.
When I contact my clients by email, it therefore displays "Hello RYAN SMITH !" while I would prefer "Hello Ryan Smith !".
So I try to get by with CSS and what seems to work on the screen when I prepare my mail, no longer works when I receive the message.
This is what i did :

Hello

!
And when I receive the email it unfortunately displays "hello ryan smith !" without capital letters.
Could someone help me with this method or another? thank you!

icon

Best answer by JR33 18 August 2022, 17:31

View original

4 replies

Userlevel 6
Badge +21

Hi JRKBM

It seems text-transform doesn't support fully in some email applications.

Userlevel 3
Badge +10

thank you I give up my research in this direction

Badge +1

Did you find how to do it?

Userlevel 3
Badge +10

Yes, with jQuery :
jQuery("#"+this.questionId+" .InputText").on("input", function() { this.value = this.value.toUpperCase(); });

Leave a Reply