Giter VIP home page Giter VIP logo

evasms's Introduction

EvaSms

Latest Stable Version License Scrutinizer Code Quality Coverage Status Build Status

统一接口设计的短信发送库。

支持以下第三方短信接口服务:

使用方法

在composer.json中加入"evaengine/eva-sms": "dev-master"

代码示例:

$sender = new \Eva\EvaSms\Sender();
$sender::setDefaultTimeout(30); //设置默认超时时间,可省略
$sender->setProvider(new \Eva\EvaSms\Providers\Submail('AppID', 'AppKey'));

//基于模版发送短信
$result = $sender->sendTemplateMessage(
    'PhoneNumber', //手机号,目前只支持带国际区号的完整手机号,如 +8618512345678
    'TemplateID', //模版ID
    ['number' => '765321'] //模版变量
);

//发送自定义短信
$result = $sender->sendStandardMessage(
    'PhoneNumber', //手机号
    'ABC', //短信内容
);

var_dump($result); //显示发送结果
echo $result; //发送结果可以转换为字符串方便Log纪录

evasms's People

Contributors

allovince avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.