Send SMS has been restricted to Admins Only

The restricted page has been disarmed, and is shown below.   Sign In to process the restricted page.

Send SMS Message

This page uses a Conditional Send SMS command to deliver messages submitted by a self posting HTML Form.   The Form is styled using Bootstrap 3 default theme classes.  

Disarmed this Hashtag Markup:
<# if "<#[post.to as trimmed]#>"!="" && "<#[post.message as trimmed]#>"!="" #>
	<# send sms;
		to = "<#[post.to]#>";
		message = "<#[post.message]#> - Sent By <#[system.user_ip_address]#>";
	#>
	<h4 class="alert alert-success text-center">
		SMS message delivered to <strong><#[post.to as html]#></strong> successfully!
	</h4>
<# end if #>

<form method="post" action="?" class="form-horizontal">
	<div class="form-group">
		<label for="to" class="col-sm-3 control-label">To</label>
		<div class="col-sm-6">
			<input type="text" name="to" required class="form-control" id="to">
		</div>
	</div>
	<div class="form-group">
		<label for="message" class="col-sm-3 control-label">Message</label>
		<div class="col-sm-6">
			<textarea name="message" required 
				class="form-control" rows="3" id="message"></textarea>
		</div>
	</div>
	<div class="form-group">
		<div class="col-sm-offset-3 col-sm-6">
			<input type="submit" class="btn btn-primary" value="Send SMS">
		</div>
	</div>
</form>


The Hashtag Markup Language provides many methods for sending SMS messages.

3rd party providers, such as Twilio and OpenMarket, can deliver and receive SMS messages through the Hashtag Framework.