#SMS message formatting

1 messages · Page 1 of 1 (latest)

silk falcon
#

Please make it so you can format SMS text messages with simple mark down like emails do currently.

hoary garnet
#

I don't think sms supports markdown like Gmail does irl

tardy sonnet
#

Have you tried with <br>?

#

Can't test rn as I'm out

silk falcon
upbeat finch
#

You can achieve that by doing something like this.
This is for email tho. Perhaps it works the same.

local row1 = "This is a test.:"
local row2 = "this is row2!"
local row3 = "this is row3!"
local row4 = "this is row4!"
            local success, id = exports["lb-phone"]:SendMail({
                to = mail,
                subject = "Test Subject!",
                message = row1 .. "\n\n" .. row2 .. "\n\n" .. row3 .. "\n\n" .. row4,
                attachments = {

                },
            })