Text formating using specific template

Hi folks,

i`m trying to read some values from a CSV file, and put the values in a text field, using Kantu for Chrome.
The blocker is that i want to put them in a specific way. For example

In the csv file i have the following values:

Name , Firstname, Phone, Sender

and i what to put them in a text area in the following template:

Hi ${!COL1} ${!COL2},

Please confirm that ${!COL3} is your contact number.

Thank you
${!COL4}

Can you give me some hints regarding the solution?

Thanks,
Bogdan

You can use\n to create a new line, e. g. aaa\nbbb\nccc

{
  "Name": "Untitled",
  "CreationDate": "2018-12-22",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://forum.a9t9.com/t/text-formating-using-specific-template/1344",
      "Value": ""
    },
    {
      "Command": "type",
      "Target": "id=ember1659",
      "Value": "aaa\\nbbb\\nccc"
    }
  ]
}
1 Like

Thanks Plankton!
Really helpful!