Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatically Fax from Internet form

Tags:

forms

fax

I'm new to programming, and my only area of expertise is web design/simple development on platforms like wordpress/expression engine. (Yea, you guys can laugh).

I have a new client who currently receives medical faxes through an online form (the user fills out a form concerning their prescriptions and once submitted, it faxes the info).

I'm completely redesigning their site, and I'm not sure how online faxing works.

Has anybody dealt with internet faxing? How does it work? Does/can it go through email?

And is it possible to send a fax through a form with javascript/php or route it through email?

like image 893
Kevin Brown Avatar asked May 21 '09 16:05

Kevin Brown


4 Answers

Don't pay for it! All you need is a modem on the server and a standard phone line. Then set up a fax print driver under your os (you can do it on windows and unix).

The unix way is mgetty/sendfax : http://mgetty.greenie.net/doc/mgetty_3.html#SEC3 The Windows way : http://support.microsoft.com/kb/306657

There are other ways but unless you can't get a phone line you'd be mad to pay fees for it.

like image 164
SpliFF Avatar answered Oct 10 '22 22:10

SpliFF


Would it not be helpful to look at how it is currently being done, that way you can learn a thing or two about the process before trying to go do it again? That way you can find if it is using any special libraries or techniques or services to send the fax and you can then either duplicate the code or use it as a template to get started on your own solution.

like image 35
TheTXI Avatar answered Oct 10 '22 23:10

TheTXI


All of what your asking is possible. I would recommend finding a service provider who can send the fax for you. They all have different interfaces requirements and pricing. I used to use DataOnCall which is now called Fax.com

They had a web service which we would post the document to be faxed plus additional information. They were a preety reasonable service. This was several years ago so I can't speak how they currently fair.

like image 22
JoshBerke Avatar answered Oct 11 '22 00:10

JoshBerke


Take a look at eFax's SDK. I haven't used it, but it looks like it might be useful to you.

like image 29
Jason Miesionczek Avatar answered Oct 11 '22 00:10

Jason Miesionczek