SMS Notification - Line break?


#1

I tried posting this in the “Spare” category, but I don’t have permission to do so:

As simple as the subject line…

Anyone know how to do a line break in an SMS notification?


Reporting the lowest battery level
Battery levels BUT
#2

Try “\n” — works for push notifications.


#3

crap, I did /r/n I thought it was the other way around. I’ll give that a shot


#4

No luck. I’ve tried /n \n and <br>


#5

type in a expression field and use return there to include line break. though not sure if sms messages actually support line break.

expression should look like this:

'Line 1
Line 2'

#6

Awesome, thank you that worked!!

I’m using this to send myself a list of variables to my phone. And yes, SMS does support line breaks.

"String1 = "{Var1}"
String2 = "{Var2}"
String3 = "{Var3}"
String4 = "{Var4}

You have to make sure your quotes include the line break.


#7

excellent!