2013-11-13 22:27:35 +01:00
|
|
|
<!--
|
|
|
|
Copyright 2013 Andrew D Lindsay @AndrewDLindsay
|
|
|
|
http://blog.thiseldo.co.uk
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2014-02-09 12:55:01 +01:00
|
|
|
<script type="text/x-red" data-template-name="twilio out">
|
2013-11-13 22:27:35 +01:00
|
|
|
<div class="form-row">
|
2014-02-09 12:55:01 +01:00
|
|
|
<label for="node-input-number"><i class="icon-envelope"></i> SMS to</label>
|
|
|
|
<input type="text" id="node-input-number" placeholder="01234 5678901">
|
2013-11-13 22:27:35 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
|
|
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
|
|
</div>
|
2014-02-09 12:55:01 +01:00
|
|
|
<div class="form-tips">Tip - leave Number blank to use <b>msg.topic</b> to set the number.</div>
|
2013-11-13 22:27:35 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="twilio out">
|
2014-02-09 12:55:01 +01:00
|
|
|
<p>Uses Twilio to send the <b>msg.payload</b> as a SMS to the configured number.</p>
|
|
|
|
<p>Uses <b>msg.topic</b> to set the phone number, if not already set in the properties.</p>
|
|
|
|
<p>You MUST configure both your Account SID and the Auth Token. Either into settings.js like this</p>
|
|
|
|
<p><pre>twilio: { account:'My-ACCOUNT-SID', authtoken:'TWILIO-TOKEN', from:'FROM-NUMBER' },</pre></p>
|
|
|
|
<p>Or as a twiliokey.js file in the directory <b>above</b> node-red.<p>
|
|
|
|
<p><pre>module.exports = { account:'My-ACCOUNT-SID', authtoken:'TWILIO-TOKEN',from:'FROM-NUMBER' }</pre></p>
|
2013-11-13 22:27:35 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('twilio out',{
|
|
|
|
category: 'output',
|
|
|
|
defaults: {
|
2014-02-09 12:55:01 +01:00
|
|
|
number: {value:""},
|
2013-11-13 22:27:35 +01:00
|
|
|
name: {value:""}
|
|
|
|
},
|
|
|
|
color:"#ed1c24",
|
|
|
|
inputs:1,
|
|
|
|
outputs:0,
|
|
|
|
icon: "twilio.png",
|
|
|
|
align: "right",
|
|
|
|
label: function() {
|
2014-02-09 12:55:01 +01:00
|
|
|
return this.name||this.title||"twilio";
|
2013-11-13 22:27:35 +01:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|