Edited yours davesa.
Optimised one to fit the Nokia E66 screen and changed colours for the PC one.
Prequisuites:
1. Go to your Exetel members page and select "SMS" from the side bar menu
2. Select "Send/Manage/View SMS" from the sub menu
3. In the middle-right of the screen you will see an "API Accounts" button, click on it
4. Enter a Username and Password (remember these as they are used later on); you can enter an IP if you wish to lock it down to a specific machine
5. Click the "Add API Access" button and logout and close your members page
For those that don't know what to do with this:
1. Open notepad.exe on your PC
2. Cut whichever versions text you want and paste it into notepad
3. Edit the necessary fields described further on
4. Go "File" and "Save as" enter a name with .htm at the end eg."name.htm" (make sure that the save type is set to "All files *.*" and not "Text Documents *.txt" otherwise it will save it as a text file)
5. Close notepad and double click the file you have created. It should open in internet explorer and you can test it.
Fields you need to change for both versions: (self explanatory)
"ENTER YOUR API USERNAME HERE"
"ENTER YOUR API PASSWORD HERE"
"ENTER YOUR MOBILE NUMBER HERE"
CODE TO ENJOY CHEAPER SMS
Nokia E66:
<html>
<head><title>SMS Over IP</title></head>
<body bgcolor="#80E0E0">
<form action="
https://www.exetel.com.au/sendsms/api_sms.php" method="post">
<input type="hidden" name="username" value="ENTER YOUR API USERNAME HERE" />
<input type="hidden" name="password" value="ENTER YOUR API PASSWORD HERE" />
<input type="hidden" name="messagetype" value="Text" />
<pre/>
SMS From: <input type="text" name="sender" size="12" maxlength="12" value="ENTER YOUR MOBILE NUMBER HERE" /><br />
To: <input type="text" name="mobilenumber" size="12" maxlength="12" /><br />
Message:
<textarea name="message" rows="3" cols="54" ></textarea> <br />
<input type="submit" style="background-color: #00FF40" value="Submit" />
</pre/>
</form>
<p> You will see "OK" at the end, if SMS was sent. </p/>
</body>
</html>
PC:
<html>
<head><title>SMS Over IP</title></head>
<body bgcolor="#80E0E0">
<form action="
https://www.exetel.com.au/sendsms/api_sms.php" method="post">
<input type="hidden" name="username" value="ENTER YOUR API USERNAME HERE" />
<input type="hidden" name="password" value="ENTER YOUR API PASSWORD HERE" />
<input type="hidden" name="messagetype" value="Text" />
<pre/>
SMS From: <input type="text" name="sender" size="12" maxlength="12" value="ENTER YOUR MOBILE NUMBER HERE" /><br />
To: <input type="text" name="mobilenumber" size="12" maxlength="12" /><br />
Message:
<textarea name="message" rows="3" cols="54" ></textarea> <br />
<input type="submit" style="background-color: #00FF40" value="Submit" />
</pre/>
</form>
<p> You will see "OK" at the end, if SMS was sent. </p/>
</body>
</html>