sending fax using .NET

  • Thread starter Thread starter Guest
  • Start date Start date
There were several articles on codeproject.com I looked at a couple of months
ago.

Cheers,
Dave
 
Also, there are some third party provided solutions, you may take a look at:

http://www.interfax.net/en/dev/vb.html

Regards,

Luke Zhang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
If you want to send faxes in a real production system, you should use an
external tool. According to me, the best tool is FaxCarrier.
It has an xml based integration technology like that.

<sendfax phone="123123123">
<pages>
<page template="background.bmp">
<annotation text="Hello From FaxCarrier." x=10 y=100 fontsize=12>
<annotation text="Sendind Fax is too easy." x=10 y=300 fontsize=10>
</page>
</pages>
</sendfax>


Can you prepare an xml like above ?
If you can, you send faxes from anywhere including ASP,ASP.Net,Java,PHP
and applications.

Please visit www.intelligentSoftwares.com/FaxCarrierEn.asp
If you send an email to (e-mail address removed), they can give you
a shareware version.

Regards
 
If you want to send faxes in a real production system, you should use an
external tool. According to me, the best tool is FaxCarrier.
It has an xml based integration technology like that.

<sendfax phone="123123123">
<pages>
<page template="background.bmp">
<annotation text="Hello From FaxCarrier." x=10 y=100 fontsize=12>
<annotation text="Sendind Fax is too easy." x=10 y=300 fontsize=10>
</page>
</pages>
</sendfax>


Can you prepare an xml like above ?
If you can, you send faxes from anywhere including ASP,.Net,Java and
PHP.

Please visit www.intelligentSoftwares.com/FaxCarrierEn.asp
If you send an email to (e-mail address removed), they can give you
a shareware version.

Regards
 
Back
Top