SMS-OVH

SMS::OVH - Send SMS using OVH API (https://api.ovh.com/)
git clone https://git.e1e0.net/SMS-OVH.git
Log | Files | Refs | README

README (3022B)


      1 ** This repo has been moved ! **
      2 
      3 I might keep pushing to this github repo, but upstream is now:
      4 
      5   https://git.onna.be/SMS-OVH/
      6 
      7 ----------------------------------------------------------------------------
      8 
      9 SMS-OVH
     10 
     11 Send SMS using OVH API (https://api.ovh.com/)
     12 
     13 This is just a little module that use OvhApi.pm to send SMS using the french provider API.
     14 You'll need the OvhApi.pm module provided by OVH at:
     15 
     16 https://eu.api.ovh.com/wrappers/OvhApi-perl-1.1.zip
     17 
     18 OvhApi is not a CPAN modeula (yet), so you'll need to have it installed before install this module.
     19 
     20 This module also depends on Moose (https://metacpan.org/pod/Moose)
     21 
     22 INSTALLATION
     23 
     24 To install this module, run the following commands:
     25 
     26 	perl Makefile.PL
     27 	make
     28 	make test
     29 	make install
     30 
     31 SUPPORT AND DOCUMENTATION
     32 
     33 After installing, you can find documentation for this module with the
     34 perldoc command.
     35 
     36     perldoc SMS::OVH
     37 
     38 You can also look for information at:
     39 
     40     RT, CPAN's request tracker (report bugs here)
     41         http://rt.cpan.org/NoAuth/Bugs.html?Dist=SMS-OVH
     42 
     43     AnnoCPAN, Annotated CPAN documentation
     44         http://annocpan.org/dist/SMS-OVH
     45 
     46     CPAN Ratings
     47         http://cpanratings.perl.org/d/SMS-OVH
     48 
     49     Search CPAN
     50         http://search.cpan.org/dist/SMS-OVH/
     51 
     52 BUGS
     53 
     54 Patches are welcome. Please send them via email to festeban@powerspace.com
     55 
     56 LICENSE AND COPYRIGHT
     57 
     58 Copyright (C) 2015 Paco Esteban
     59                       and
     60                    Powerspace Advertising SL <http://powerspace.com/>
     61 
     62 This program is distributed under the (Revised) BSD License:
     63 L<http://www.opensource.org/licenses/BSD-3-Clause>
     64 
     65 Redistribution and use in source and binary forms, with or without
     66 modification, are permitted provided that the following conditions
     67 are met:
     68 
     69 * Redistributions of source code must retain the above copyright
     70 notice, this list of conditions and the following disclaimer.
     71 
     72 * Redistributions in binary form must reproduce the above copyright
     73 notice, this list of conditions and the following disclaimer in the
     74 documentation and/or other materials provided with the distribution.
     75 
     76 * Neither the name of Paco Esteban's Organization
     77 nor the names of its contributors may be used to endorse or promote
     78 products derived from this software without specific prior written
     79 permission.
     80 
     81 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     82 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     83 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     84 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     85 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     86 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     87 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     88 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     89 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     90 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     91 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     92