sterretje:
Why build a full string? You can print the individual parts piece by piece; they end up in a buffer before being send.Serial.print("Hello ");
Serial.print("World!");
has the same effect asSerial.print("Hello World!");
true on Serial, not on network Client implementations where it could be send over network in two parts