PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Josiah Ovye Yahaya   SmartSMS PHP Send SMS Message   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: SmartSMS PHP Send SMS Message
Deliver SMS messages using the SmartSMS API
Author: By
Last change:
Date: 5 years ago
Size: 286 bytes
 

Contents

Class file image Download
<?php

$config
= [
   
/**
     * Your smartsms solutions api token
     */
   
'token' => getenv('SMARTSMS_TOKEN'),
   
/**
     * Set this 3 if you want to force delivering messages to numbers on DND
     */
   
'routing' => getenv('SMARTSMS_ROUTING')
];

return
$config;