SMS::Server::Tools - parse SMS Server Tools files


SMS-Server-Tools documentation  | view source Contained in the SMS-Server-Tools distribution.

Index


NAME

Top

SMS::Server::Tools - parse SMS Server Tools files

VERSION

Top

Version 0.011

SYNOPSIS

Top

Read file with SMS text message received by SMS Server Tools.

    use SMS::Server::Tools;

    my $file = "/path/to/smsfile";
    my $sms  = SMS::Server::Tools->new({SMSFile => $file});

    $sms->parse;

    my $sender_number      = $sms->From;
    my $datetime_sent      = $sms->Sent;
    my $datetime_received  = $sms->Received;
    my $sms_text           = $sms->Text;

DESCRIPTION

Top

SMS::Server::Tools provides an object-oriented interface to access sms files used by the SMS Server Tools.

The SMS Server Tools send and receive short messages through GSM modems or mobile phones http://smstools.meinemullemaus.de/.

SMS File Format Getter

Top

SMS::Server::Tool parse the sms file and give the access to the following sms file fields.

    $sms->Text;
    $sms->From;    
    $sms->Sent;
    $sms->Received;
    $sms->IMSI;
    $sms->From_TOA;    
    $sms->From_SMSC;
    $sms->Subject;
    $sms->Report;
    $sms->Alphabet;
    $sms->UDH;

For the complete SMS file format used by SMS Server Tools see http://smstools.meinemullemaus.de/fileformat.html

METHODS

Top

new

Create an new sms object.

SMSFile

Set path to sms file.

parse

The parse method read the sms file.

write

The write method write the sms file.

AUTHOR

Top

Thomas Lenz, <tholen at cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-sms-server-tools at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Server-Tools. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SEE ALSO

Top

For more Information about SMS Server Tools follow this links.

http://smstools.meinemullemaus.de/

http://smstools3.kekekasvi.com/

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc SMS::Server::Tools




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=SMS-Server-Tools

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/SMS-Server-Tools

* CPAN Ratings

http://cpanratings.perl.org/d/SMS-Server-Tools

* Search CPAN

http://search.cpan.org/dist/SMS-Server-Tools/

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


SMS-Server-Tools documentation  | view source Contained in the SMS-Server-Tools distribution.