Try this to strip the null terminator
String a = "page1ok";
char buf[a.length()];
memcpy(buf, a.c_str(), a.length());
SerialBT.write(buf, a.length());
I use print, the message is not received...
You may need to send a '\n' or some other character which the receiver is expecting.