PHP Classes

File: forgetPassword.php

Recommend this page to a friend!
  Classes of Leader   Sending SMS messages   forgetPassword.php   Download  
File: forgetPassword.php
Role: Example script
Content type: text/plain
Description: forgetPassword function, to retrieve your password
Class: Sending SMS messages
Send SMS messages using the Doo.ae API
Author: By
Last change:
Date: 10 years ago
Size: 798 bytes
 

Contents

Class file image Download
<?php
include("includeSettings.php"); //Include this file to get the general settings
$mobile = ""; //Your mobile number, as registered in Doo.ae.
$sendtype = 2; //1 or 2
                                    /*
                                    1: the password will be sent to your mobile number
                                    2: the password will be sent to your email Determine where to send the password (in this case you should have been specified it in your Personal Info page at you account)
                                    */
$resultType = 0; //This variable determine the type of the result
                                    //0: Returns the result as they are at the gate
                                    //1: Returns the meaning of the result returned from the gate
                                       
//Call forgetPassword function, to retrieve your password
echo $sendPort->forgetPassword($mobile, $sendtype, $resultType);
?>