5
0
mirror of https://github.com/cwinfo/envayasms.git synced 2025-01-09 20:05:38 +00:00

explain multipart sms in api reference

This commit is contained in:
Jesse Young 2011-09-23 23:19:41 -07:00
parent 043d1667b4
commit 55fe371db9
3 changed files with 8 additions and 4 deletions

View File

@ -257,6 +257,7 @@ Additional parameters sent in POST requests with action=incoming:
<dt>"message" ::= &lt;text&gt;</dt>
<dd>
The message body of the SMS, or the content of the <code>text/plain</code> part of the MMS.
For multipart SMS messages, this field contains all parts concatenated and may be longer than 160 characters.
</dd>
</dl>
@ -396,7 +397,8 @@ The Content-Type header should be text/xml, with the content as follows:
<dl>
<dt>CDATA</dt>
<dd>
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.
</dd>
</dl>
</dd>

View File

@ -39,7 +39,7 @@
<h2>History</h2>
Version 2.0-beta (2011/09/22)
Version 2.0-beta (2011/09/23)
<ul>
<li>
@ -51,7 +51,7 @@
<li>
Send and receive multipart SMS (longer than 160 characters)
</li>
<li>
<li>
Server API changed to use POST requests instead of GET requests, and other changes;
support for future server API changes via 'version' request parameter
</li>

View File

@ -295,6 +295,7 @@ Additional parameters sent in POST requests with action=incoming:
<dt>"message" ::= &lt;text&gt;</dt>
<dd>
The message body of the SMS, or the content of the <code>text/plain</code> part of the MMS.
For multipart SMS messages, this field contains all parts concatenated and may be longer than 160 characters.
</dd>
</dl>
@ -434,7 +435,8 @@ The Content-Type header should be text/xml, with the content as follows:
<dl>
<dt>CDATA</dt>
<dd>
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.
</dd>
</dl>
</dd>