how to send Fax using .NET Mail object.

B

BizWorld

hi,

i need to send fax using .NET System.web.Mail component. it works fine
for emails but Fax works well in Outlook but when i try to send Fax
using .NET object it did not work. To address of fax should be
[Fax:myfaxnoany]. here myfaxnoany means actual number that i need to
use here. it only say Cdo.Message object failed. i looked at Outlook
emails which were used to send faxes and found that email type is
mentioned as Fax. i dont know how i can specify this using .NET Mail
object.

Regards,

BizWorld.
 
R

Renu Bhattar [MSFT]

Can you let know the OS and Outlook version you are working on?

--
---

Renu Bhattar [MSFT]

Microsoft Printing, Imaging and Faxing
This posting isprovided "AS IS" with no warranties and confers no rights.
Please do not send mail directly to this alias. This alias is for newsgroup
purposes only.
 
R

Renu Bhattar [MSFT]

System.Web.Mail uses SMTP to send the message. So basically you can send
only mails and no faxes, as fax uses a different transport protocol.
Check the link http://msdn2.microsoft.com/en-US/library/system.web.mail.aspx
Incase, you want to send fax programmatically, you can directly use the Fax
APIs
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fax/faxusing_8lyb.asp

If you want send faxes as they are sent in Outlook, you will need to use
Messaging APIs and that will internally call the Fax APIs. So, its better to
use Fax APIs directly.

Thanks,

Renu Bhattar [MSFT]

Microsoft Printing, Imaging and Faxing
This posting isprovided "AS IS" with no warranties and confers no rights.
Please do not send mail directly to this alias. This alias is for newsgroup
purposes only.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top