Whats the problem you are facing in doing that.
Use loop to get the substring from the original message, and send it in a loop.
string msg="";
int count = msg.Length;
int x = 0;
while (x <= count)
{
string imsg = msg.Substring(x, 150);
x += 150;
}
I think this is what you required. :rose: