in reply to Mail message sent to Mobile via SMS

  1. Find the Mail to SMS Gateway (that's the hard part -- I don't know of a service that given a phone number will give you the gateway)
  2. Code it up just like sending email:
    my $msg = MIME::Lite->new( From => 'reputableme@notaspammer.com', To => '8657301@gatewayfromlist.tld', Data => 'Something pithy' ); $msg->send;

-derby