Add line breaks to text messages

Hey all,

I am currently using SMS/text workflows via Twilio API and am wanting to use line breaks to better format my text messages. Any suggestions on how to accomplish this?

Currently, they look like this:
"Hey my name is Luis. I am from the USA. "

When I want it to look like this:
"Hey my name is Luis.

I am from the USA."

Hey @luisdavila612 ,
I used the “Find and Replace” action on the response. It captures the . in the response and replaces it with . + line break.

image

Hey when I try this, it adds /n to the message

So for example it looks like this

Hey my name is Luis./n I am from the USA.

Use %0a for line breaks.

1 Like

If you want a “not too proud, but it works” method, you can do an append:arbritray text.

And the arbitrary text is just two carriage returns.

3 Likes

Great! It was not intuitive at all.

This topic was automatically closed after 70 days. New replies are no longer allowed.