eFax PHP Fax API Script – Send Fax Using PHP
This PHP script converts a string containing HTML into a TIFF image that is then faxed via the eFax Developer API. We built the script from scratch for use in one of our projects because a good, commercial one was not available. We now present the script, available for download here for only $19:
*100% Money-BackĀ Guarantee. For tech support, please contact us.
This is an example of how to use the script:
$faxToName = "Recipient Name";
$faxToNumber = "5555555555";
$faxFile = "<html><body><h2>THIS IS A TEST</h2></body></html>";
// this is raw HTML
require("send-fax.php");
sendFax($faxToName,$faxToNumber,$faxFile);





