From an email to Form input
Posted: Tue Apr 13, 2004 5:03 pm
Okay, here's my problem:
My cellular provider doesn't support email forwarding for text messaging. Okay, that sucks. But they do offer web based text messaging from their site. They're stupid and use ASP, but here is the HTML form used:
So, what I want to do, is setup an email address, like mycell@mydomain.com and have it sent to a script on my server that will just spit the body of the email into the "msg" text area. Anyone have a clue as to how I can do this? I'm good at concepts but not code because I'm a newbie!
My cellular provider doesn't support email forwarding for text messaging. Okay, that sucks. But they do offer web based text messaging from their site. They're stupid and use ASP, but here is the HTML form used:
Code: Select all
<form name="disclaimer" action="http://mycricket.com/text/SendTo_SMS_System.asp?Step=2" method="post">
<input type="hidden" name="from" value="Proteus_IM">
Your Message: <input type="textfield" name="msg" value="">
<input type="hidden" name="email_from" value="Proteus IM">
<input type="hidden" name="cricket_phone_number" value="4795224904">
<input type="submit" name="Submit" value="Send">
</form>