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.

Form for Google Sheet — Conditional Send SMS Action

This page uses a Hashtag Form Actions to Conditionally Send SMS messages.   The Form is styled using Bootstrap 3 default theme classes.   All submitted information is stored in a Google Sheet.  

Disarmed this Hashtag Markup:
<# start form for google sheet "Contact Submissions";
	set form.class to "form-horizontal";
	when creating and ("<# form.phone #>"!="") send sms; 
		to = "<# form.phone #>";
		message = "<# form.message #> - Sent By <#[system.user_ip_address]#>";
	when done redirect to "/sms/form-action-landing";
#>

<div class="form-group">
	<label for="first_name" class="col-sm-3 control-label">First Name</label>
	<div class="col-sm-6">
		<input type="text" <# first_name #> class="form-control" id="first_name">
	</div>
</div>
<div class="form-group">
	<label for="last_name" class="col-sm-3 control-label">Last Name</label>
	<div class="col-sm-6">
		<input type="text" <# last_name #> class="form-control" id="last_name">
	</div>
</div>
<div class="form-group">
	<label for="phone" class="col-sm-3 control-label">Phone</label>
	<div class="col-sm-6">
		<input type="text" <# phone #> class="form-control" id="phone">
	</div>
</div>
<div class="form-group">
	<label for="message" class="col-sm-3 control-label">Message</label>
	<div class="col-sm-6">
		<textarea <# message #> required rows="3" 
			class="form-control" id="message"></textarea>
	</div>
</div>
<div class="form-group">
	<div class="col-sm-offset-3 col-sm-6">
		<input type="submit" <# create button #> class="btn btn-primary" 
			value="Send Message">
	</div>
</div>

<# end 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.