Skip to content

Instantly share code, notes, and snippets.

@DominicFinn
Created February 5, 2013 09:32
Show Gist options
  • Save DominicFinn/4713326 to your computer and use it in GitHub Desktop.
Save DominicFinn/4713326 to your computer and use it in GitHub Desktop.
An example form for sending SMS using a form on the web for Leanne
<!--https://www.esendex.com/secure/messenger/formpost/SendSMS.aspx?
username=xxx@xxx.com&
account=ex000xxxx&
password=xxx&
recipient=xxx&
body=xxx&
plaintext=1-->
<form method="post" action="https://www.esendex.com/secure/messenger/formpost/SendSMS.aspx?">
<label for="username">Enter your username:</label>
<input type="text" value="" id="username" name="username" />
<label for="password">Enter your password:</label>
<input type="password" value="" id="password" name="password" />
<label for="account">Enter your account:</label>
<input type="text" value="" id="account" name="account" />
<label for="recipient">To:</label>
<input type="text" value="" id="recipient" name="recipient" />
<label for="body">Enter your message:</label>
<input type="text" value="" id="body" name="body" />
<input type="hidden" value="1" id="plaintext" name="plaintext" />
<input type="submit" value="Send Message" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment