#SMS message formatting
1 messages · Page 1 of 1 (latest)
I don't think sms supports markdown like Gmail does irl
yea tested with html too,
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 = {
},
})