sending fax with dotnet

  • Thread starter Thread starter Emmanuel Guillot
  • Start date Start date
E

Emmanuel Guillot

hello i want to send a fax with dotnet c# or delphi later

for a email my code is :

Outlook.ApplicationClass app = new Outlook.ApplicationClass();
Outlook.MailItemClass mi =
(Outlook.MailItemClass)app.CreateItem(Outlook.OlItemType.olMailItem);
mi.Recipients.Add("myemail");
mi.Subject = "essai";
mi.Display(new object());

how doing for sending a fax ?! (symantec fax starter edition and outlook
2000)
thanks manu.
 
Correct. WinFax SE does not expose an object model or an API. WinFax Pro
does but not SE.
 
thanks for your responses

In your opinion ther is no way to send parameter to outlook
like the account for example that can root on the Winfax SE ?

Because when i look the message fax there is just the account(Winfax SE)
that change.

what about the [FAX:xxxxxxx] in the "To :" Adresse is just for Mapi

(sorry for my english im frensh)
 
I don't know that I'd even bother at all with WinFax SE unless I was forced
to. It was completely buggy, mostly non-supported and only available for
Outlook 2000 Internet only mode. It's not really an application I'd be
wasting any time with. Other fax applications are better and may offer a
programming interface that you could use.
 
Ken said:
I don't know that I'd even bother at all with WinFax SE unless I
was forced
to. It was completely buggy, mostly non-supported and only available
for
Outlook 2000 Internet only mode. It's not really an application I'd
be
wasting any time with. Other fax applications are better and may
offer a
programming interface that you could use.


Do you know of any programs that will let you programatically send
faxes? Preferably free! :-)
 
Back
Top