Re: [PHP] faxing from php

2003-10-07 Thread Robert Cummings
On Tue, 2003-10-07 at 12:59, Nicolas Claus wrote: Hi all, is there an easy way to send faxes from PHP? Please explain as you would have to explain it to your grandmother (I'm rather new with PHP, you know). Sorry grandmother, I just don't have the time to explain all this to you. Cheers.

Re: [PHP] faxing from php

2003-10-07 Thread Jason Wong
On Wednesday 08 October 2003 00:59, Nicolas Claus wrote: is there an easy way to send faxes from PHP? Short answer, no. Please explain as you would have to explain it to your grandmother (I'm rather new with PHP, you know). Longer answer, you need to install some kind of fax software

Re: [PHP] faxing

2002-08-28 Thread Nelson Asinowski
Mike Mannakee wrote: Does anyone know of a solution to get a script to actually connect with the POTS system (even through a 3rd party provider) and send a fax? Mike There are several fax over the internet providers out there. I used to work for one. That service was via email. You sent a

RE: [PHP] faxing

2002-08-28 Thread James E Hicks III
system(html2ps document.html); system(hylafax -somedirectives document.ps); I haven't got around to actually figuring this out, but this is my plan. James -Original Message- From: Mike Mannakee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 1:14 PM To: [EMAIL PROTECTED]

Re: [PHP] faxing in PHP

2001-12-24 Thread Jim Lucas [php]
hylafax I am working on a project right now to set this up on a linux box. Should work great. Jim - Original Message - From: LDL Enterprise [EMAIL PROTECTED] To: *PHP-General mail list [EMAIL PROTECTED] Sent: Monday, December 24, 2001 12:15 PM Subject: [PHP] faxing in PHP Hi, Is

Re: [PHP] faxing in PHP

2001-12-24 Thread Bas van Rooijen
Or use a commercial fax service, this may even be cheaper! http://www.jfax.com/ offers email to fax. bvr. On Mon, 24 Dec 2001 12:26:54 -0800, Jim Lucas [php] wrote: hylafax I am working on a project right now to set this up on a linux box. Should work great. Jim -- PHP General

Re: [PHP] faxing in PHP

2001-12-24 Thread Steve Maroney
There are many different fax daemons for unix and windows. Thier command line tools are differnt. In the past, I have sent a fax by opening a process to the command line tools provided by the fax software. I simply use PHP variables as arguments. Hope this helps. Steve On Mon, 24 Dec 2001, LDL