diff --git a/.phrozn/entries/serverapi/index.twig b/.phrozn/entries/serverapi/index.twig
index c4d25e0..1ad8c42 100755
--- a/.phrozn/entries/serverapi/index.twig
+++ b/.phrozn/entries/serverapi/index.twig
@@ -257,6 +257,7 @@ Additional parameters sent in POST requests with action=incoming:
"message" ::= <text>
The message body of the SMS, or the content of the text/plain
part of the MMS.
+ For multipart SMS messages, this field contains all parts concatenated and may be longer than 160 characters.
@@ -396,7 +397,8 @@ The Content-Type header should be text/xml, with the content as follows:
- CDATA
-
- The content of the SMS message to send.
+ The content of the SMS message to send. If the content is longer than the maximum size of a single SMS (typically 160 characters),
+ it will automatically be sent as a multipart SMS.
diff --git a/history/index.html b/history/index.html
index c0e5ae8..207ccc9 100755
--- a/history/index.html
+++ b/history/index.html
@@ -39,7 +39,7 @@
History
- Version 2.0-beta (2011/09/22)
+ Version 2.0-beta (2011/09/23)
-
@@ -51,7 +51,7 @@
-
Send and receive multipart SMS (longer than 160 characters)
- -
+
-
Server API changed to use POST requests instead of GET requests, and other changes;
support for future server API changes via 'version' request parameter
diff --git a/serverapi/index.html b/serverapi/index.html
index ac4fc83..db9a89a 100755
--- a/serverapi/index.html
+++ b/serverapi/index.html
@@ -295,6 +295,7 @@ Additional parameters sent in POST requests with action=incoming:
- "message" ::= <text>
-
The message body of the SMS, or the content of the
text/plain
part of the MMS.
+ For multipart SMS messages, this field contains all parts concatenated and may be longer than 160 characters.
@@ -434,7 +435,8 @@ The Content-Type header should be text/xml, with the content as follows:
- CDATA
-
- The content of the SMS message to send.
+ The content of the SMS message to send. If the content is longer than the maximum size of a single SMS (typically 160 characters),
+ it will automatically be sent as a multipart SMS.