[docs] sms settings page added

This commit is contained in:
Priya
2013-09-11 16:33:09 +05:30
parent 3abfdd57a4
commit 34b3256a31
2 changed files with 44 additions and 10 deletions

View File

@@ -3,24 +3,28 @@
"_label": "SMS Setting"
}
---
To integrate SMS in ERPNext, approach a SMS Gateway Provider who prvides HTTP API. They will create an account for you and will provide an unique username and password.
To integrate SMS in ERPNext, approach a SMS Gateway Provider who provides HTTP API. They will create an account for you and will provide an unique username and password.
To configure SMS Settings in ERPNext, find out their HTTP API (a document which describes the method of accessing their SMS interface from 3rd party applications). In this document, you will get an URL which is used to send the SMS using HTTP request. Using this URL, you can configure SMS Settings in ERPNext.
Example URL:
http://instant.smses.com/web2sms.php?username=<USERNAME>&password=<PASSWORD>&to=<
MOBILENUMBER>&sender=<SENDERID>&message=<MESSAGE>
Example URL: <br>
<pre>http://instant.smses.com/web2sms.php?username=&lt;USERNAME>&password=&lt;PASSWORD>&to=&lt;MOBILENUMBER>&sender=&lt;SENDERID>&message=&lt;MESSAGE>
</pre>
![SMS Settings](img/sms-settings2.jpg)
Note: the characters up to the "?" are the SMS Gateway URL
> Note: the characters up to the "?" are the SMS Gateway URL
Example:
http://instant.smses.com/web2sms.php?username=abcd&password=abcd&to=9900XXXXXX&sender
=DEMO&message=THIS+IS+A+TEST+SMS
The above url will send sms from account abcd to mobile number 9900XXXXXX with sender ID as
DEMO with text message as THIS IS A TEST SMS
<pre>http://instant.smses.com/web2sms.php?username=abcd&password=abcd&to=9900XXXXXX&sender
=DEMO&message=THIS+IS+A+TEST+SMS</pre>
You can see here some parameters in the URL are static, you will get static values from your SMS Provider like username, password etc. These static values should be entered in Static Parameters table.
The above URL will send SMS from account abcd to mobile number 9900XXXXXX with sender ID as DEMO with text message as THIS IS A TEST SMS
Note that some parameters in the URL are static.You will get static values from your SMS Provider like username, password etc. These static values should be entered in the Static Parameters table.
![SMS Setting](img/sms-settings1.png)