mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-01-09 20:05:38 +00:00
add link to github downloads apk; KalSMS credits
This commit is contained in:
parent
3f90501821
commit
9347e061be
@ -148,8 +148,8 @@ but anyone is welcome to contribute to improve it.
|
||||
|
||||
<p>
|
||||
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
||||
started by Nir Yariv in 2010. KalSMS introduced the idea of a simple SMS gateway implemented entirely as an Android app.
|
||||
EnvayaSMS is a complete rewrite that shares a small amount of code with KalSMS.
|
||||
started by Nir Yariv in 2010. KalSMS first introduced the idea of a simple SMS gateway implemented entirely as an Android app.
|
||||
EnvayaSMS is a major rewrite that shares a small amount of code with KalSMS.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
@ -69,7 +69,7 @@ Version 2.0-beta (2011/09/23)
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Option to poll server for outgoing messages once per hour
|
||||
Option to poll server for outgoing messages once per hour (Sheldon D'Souza)
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@ -77,6 +77,6 @@ Version 2.0-beta (2011/09/23)
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Initial release with support for receiving incoming SMS and sending replies
|
||||
Initial release with support for receiving incoming SMS and sending replies (Nir Yariv)
|
||||
</li>
|
||||
</ul>
|
@ -29,9 +29,18 @@ Using an Android phone, open <a href='https://market.android.com/details?id=org.
|
||||
</div>
|
||||
|
||||
<div style='clear:both;padding-top:10px'>
|
||||
Alternatively, software developers may <a href="https://github.com/youngj/EnvayaSMS">download the source code from GitHub</a>
|
||||
|
||||
<p>
|
||||
In order to download from Android Market, you will need a Google account and the Market app on your phone.
|
||||
Alternatively, you can also install download EnvayaSMS directly from the link below:
|
||||
</p>
|
||||
<strong><a href='https://github.com/downloads/youngj/EnvayaSMS/EnvayaSMS-release.apk'>EnvayaSMS-release.apk</a></strong>
|
||||
<p>
|
||||
Software developers may also <a href="https://github.com/youngj/EnvayaSMS">download the source code from GitHub</a>
|
||||
and build EnvayaSMS themselves.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Configuring EnvayaSMS</h2>
|
||||
|
||||
|
@ -241,7 +241,7 @@ The following HTTP Headers are sent in all POST requests from EnvayaSMS:
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=incoming:
|
||||
Additional parameters sent in POST requests with <code>action=incoming</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"from" ::= <text></dt>
|
||||
@ -261,7 +261,7 @@ Additional parameters sent in POST requests with action=incoming:
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=incoming and message_type=mms:
|
||||
Additional parameters sent in POST requests with <code>action=incoming</code> and <code>message_type=mms</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"mms_parts" ::= <json_array></dt>
|
||||
@ -300,7 +300,7 @@ Additional parameters sent in POST requests with action=incoming and message_typ
|
||||
</dt>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=outgoing:
|
||||
Additional parameters sent in POST requests with <code>action=outgoing</code>:
|
||||
|
||||
<dl>
|
||||
<dt>
|
||||
@ -308,7 +308,7 @@ Additional parameters sent in POST requests with action=outgoing:
|
||||
</dt>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=send_status:
|
||||
Additional parameters sent in POST requests with <code>action=send_status</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"id" ::= <text></dt>
|
||||
@ -357,7 +357,7 @@ Content-Length: 189
|
||||
|
||||
Specification:
|
||||
<p>
|
||||
The Content-Type header should be text/xml, with the content as follows:
|
||||
The <code>Content-Type</code> header should be <code>text/xml</code>, with the content as follows:
|
||||
</p>
|
||||
<dl>
|
||||
<dt><messages></dt>
|
||||
|
@ -179,8 +179,8 @@ but anyone is welcome to contribute to improve it.
|
||||
|
||||
<p>
|
||||
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
||||
started by Nir Yariv in 2010. KalSMS introduced the idea of a simple SMS gateway implemented entirely as an Android app.
|
||||
EnvayaSMS is a complete rewrite that shares a small amount of code with KalSMS.
|
||||
started by Nir Yariv in 2010. KalSMS first introduced the idea of a simple SMS gateway implemented entirely as an Android app.
|
||||
EnvayaSMS is a major rewrite that shares a small amount of code with KalSMS.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
@ -107,7 +107,7 @@
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Option to poll server for outgoing messages once per hour
|
||||
Option to poll server for outgoing messages once per hour (Sheldon D'Souza)
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@ -115,7 +115,7 @@
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Initial release with support for receiving incoming SMS and sending replies
|
||||
Initial release with support for receiving incoming SMS and sending replies (Nir Yariv)
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
@ -67,9 +67,18 @@ Using an Android phone, open <a href='https://market.android.com/details?id=org.
|
||||
</div>
|
||||
|
||||
<div style='clear:both;padding-top:10px'>
|
||||
Alternatively, software developers may <a href="https://github.com/youngj/EnvayaSMS">download the source code from GitHub</a>
|
||||
|
||||
<p>
|
||||
In order to download from Android Market, you will need a Google account and the Market app on your phone.
|
||||
Alternatively, you can also install download EnvayaSMS directly from the link below:
|
||||
</p>
|
||||
<strong><a href='https://github.com/downloads/youngj/EnvayaSMS/EnvayaSMS-release.apk'>EnvayaSMS-release.apk</a></strong>
|
||||
<p>
|
||||
Software developers may also <a href="https://github.com/youngj/EnvayaSMS">download the source code from GitHub</a>
|
||||
and build EnvayaSMS themselves.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Configuring EnvayaSMS</h2>
|
||||
|
||||
|
@ -279,7 +279,7 @@ The following HTTP Headers are sent in all POST requests from EnvayaSMS:
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=incoming:
|
||||
Additional parameters sent in POST requests with <code>action=incoming</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"from" ::= <text></dt>
|
||||
@ -299,7 +299,7 @@ Additional parameters sent in POST requests with action=incoming:
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=incoming and message_type=mms:
|
||||
Additional parameters sent in POST requests with <code>action=incoming</code> and <code>message_type=mms</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"mms_parts" ::= <json_array></dt>
|
||||
@ -338,7 +338,7 @@ Additional parameters sent in POST requests with action=incoming and message_typ
|
||||
</dt>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=outgoing:
|
||||
Additional parameters sent in POST requests with <code>action=outgoing</code>:
|
||||
|
||||
<dl>
|
||||
<dt>
|
||||
@ -346,7 +346,7 @@ Additional parameters sent in POST requests with action=outgoing:
|
||||
</dt>
|
||||
</dl>
|
||||
|
||||
Additional parameters sent in POST requests with action=send_status:
|
||||
Additional parameters sent in POST requests with <code>action=send_status</code>:
|
||||
|
||||
<dl>
|
||||
<dt>"id" ::= <text></dt>
|
||||
@ -395,7 +395,7 @@ Content-Length: 189
|
||||
|
||||
Specification:
|
||||
<p>
|
||||
The Content-Type header should be text/xml, with the content as follows:
|
||||
The <code>Content-Type</code> header should be <code>text/xml</code>, with the content as follows:
|
||||
</p>
|
||||
<dl>
|
||||
<dt><messages></dt>
|
||||
|
Loading…
Reference in New Issue
Block a user