<?php
 
/******************************************************************************
 
                     HOW TO USE "PHP MEGAUPLOAD.COM CLASS"
 
 ******************************************************************************
 
 Example #10: Email files and folders to anyone through megauploads.com server
 
 ******************************************************************************
 
       Author:     Naveed-ur-Rehman
 
       Email:      [email protected],
 
                   [email protected],
 
                   [email protected]
 
       Website:    http://www.naveedurrehman.com/
 
 ******************************************************************************
 
*/
 
 
require_once('../class/megaupload.class.php');    //php megaupload.com class file
 
require_once('credentials.php');    //Your signing in credentails of megaupload.com account
 
 
$megaupload = new megaupload_class();    //Initializing the class
 
 
$megaupload->username=$username;    //Setting credentails (loaded from credentails.php)
 
$megaupload->password=$password;
 
 
$isconnect = $megaupload->connect();    //Return: 0=trouble, 1=validated and connected
 
 
if($isconnect==1)
 
{
 
 echo "Credentials are verified and you are connected to megaupload.com successfully!<br/>";
 
 
 $megaupload->refreshlist();        //Loading list is IMPORTANT!
 
 
 //Note: See example2_refreshlist.php for getting file and folder IDs
 
 
 $ids = array(                //You can add more files and folders
 
           "FCFEY7ZD",
 
        );
 
 
 $toemail = "[email protected]";    //Recepient email
 
 
 $subject = "Some subject of email";    //Email subject
 
 
 $message = "Some message";        //Body of email (file details will be added)
 
 
 $megaupload->email($ids,$toemail,$subject,$message);    //Note: There is no way to confirm success
 
 
 echo "Email has been sent.";
 
}
 
else
 
{
 
 echo "Error occured while connecting to megaupload.com. May be username and/or password supplied is invalid.";
 
}
 
 
$megaupload->disconnect();        //Disconnect to release everything
 
 
?>
 
 |