How can i send fax using hylafax php? Is there any php class to do this? i searched 1 full day in google to get a class. but didn't get a simple function
please give me link to download a php class.
            Asked
            
        
        
            Active
            
        
            Viewed 964 times
        
    0
            
            
        
        user2439708
        
- 21
 - 5
 
- 
                    please help me to find a class – user2439708 Jun 11 '13 at 10:17
 - 
                    http://stackoverflow.com/questions/2301810/can-i-send-a-fax-using-php – MKroeders Jun 11 '13 at 10:41
 
1 Answers
1
            You can execute hylafax's sendfax command from PHP using PHP's shell_exec() command. Ex:
<?
   $ok=shell_exec("sendfax -n -d 5551212 /etc/passwd");
?>
        mti2935
        
- 11,465
 - 3
 - 29
 - 33