View Single Post
  #1  
Old June 22nd, 2004, 11:49 AM
Emmanuel Guillot
external usenet poster
 
Posts: n/a
Default sending fax with dotnet

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.OlIt emType.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.