Hi All,
Can any expert provide me a guide on how i can send SMS from pc to mobile phone using VBA or some other language ?
I am a newbie in networking. (1 Reply)
Hello Genuis guys,
I am running Aix5 and Oracle 9 on it.
I have sql query which only count a particular rows.
I need to prepare a script which will run that sql query every 10 minutes and if the ouput count is greate than 20. It will send SMS to mobile numbers.
Need your kind help to... (8 Replies)
Hi All,
Can anyone please help in setting up Unix script for sending text messages on mobile??
Actually scenario is we want notification when there is any failures in our processes or if any service goes down we must be notified by a text message on our mobile, we already have email... (3 Replies)
I need from aix to send an SMS, you know if the command curl serves me (3 Replies)
Discussion started by: tricampeon81
3 Replies
LEARN ABOUT DEBIAN
sms::send::test
SMS::Send::Test(3pm) User Contributed Perl Documentation SMS::Send::Test(3pm)NAME
SMS::Send::Test - SMS::Send International-Class Testing Driver
SYNOPSIS
# Create a testing sender
my $send = SMS::Send->new( 'Test' );
# Clear the message trap
$send->clear;
# Send a message
$send->send_sms(
text => 'Hi there',
to => '+61(4) 1234 5678',
);
# Get the message from the trap
my @messages = $send->messages;
DESCRIPTION
SMS::Send supports two classes of drivers.
An international class named in the format "SMS::Send::Foo", which only accept international numbers in "+1 XXX XXXXX" format, and
regional-context drivers in the format "SMS::Send::XX::Foo" which will also accept a non-leading-plus number in the format applicable
within that region (in the above case, Australia).
SMS::Send::Test is the testing driver for the international class of drivers. Except for the name, it is otherwise identical to
SMS::Send::AU::Test.
Its two roles are firstly to always exist (be installed) and secondly to act as a "trap" for messages. Messages sent via SMS::Send::Test
always succeed, and the messages can be recovered for testing after sending.
Note that the trap is done on a per-driver-handle basis, and is not shared between multiple driver handles.
METHODS
SMS::Send::Test inherits all the methods of the parent SMS::Send::Driver class, and adds the following.
messages
The "messages" method retrieves as a list all of the messages in the message trap.
clear
The "clear" method clears the message trap. This should be done before each chunk of test code to ensure you are starting from a known
state.
Returns true as a convenience.
SUPPORT
Bugs should be reported via the CPAN bug tracker at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Send <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Send>
For other issues, contact the author.
AUTHOR
Adam Kennedy <adamk@cpan.org>
COPYRIGHT
Copyright 2005 - 2011 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl v5.14.2 2011-11-09 SMS::Send::Test(3pm)