Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I send a fax using PHP? [closed]

Tags:

php

fax

I have fax numbers and I would like to send a fax message to each of the numbers programatically.

What is the code to send fax message using PHP?

like image 528
Sushant Panigrahi Avatar asked Feb 03 '23 06:02

Sushant Panigrahi


2 Answers

As fax is not internet-based like email, there is no easy way to do this, like you can send emails using mail().

You can, though, use PHP to talk to an internet fax service, as described here: http://www.interfax.net/en/dev/php

like image 121
Douwe Maan Avatar answered Feb 06 '23 14:02

Douwe Maan


PamFax provides a comprehensive PHP Fax API: http://www.pamfax.biz/en/developers/samples/

Disclaimer: I work for PamConsult, the company behind PamFax.

like image 40
Steffen Macke - PamConsult Avatar answered Feb 06 '23 16:02

Steffen Macke - PamConsult