
SMS::Send::IS::Vit - SMS::Send driver for vit.is

use SMS::Send;
my $sender = SMS::Send->new("IS::Vit");
my $ok = $ender->send_sms(
to => '6811337',
text => 'Y hlo thar',
);
if ($ok) {
print "Yay SMS\n";
} else {
print "Oh noes failure\n";
}

A regional SMS::Send driver for Iceland that deliers messages via http://vit.is to any Icelandic cell phone number.

This module will call sleep(1) when it first retrieves a cookie before it submits the sms. The vit.is server does not seem to recognize a cookie it handed out until after a slight delay.


Ævar Arnfjörð Bjarmason <avar@cpan.org>

Copyright 2007-2008 Ævar Arnfjörð Bjarmason.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.