| Next: receiving |
| Author |
Message |
Emmanuel Guillot External

Since: Jun 22, 2004 Posts: 2
|
Posted: Tue Jun 22, 2004 1:49 pm Post subject: sending fax with dotnet Archived from groups: microsoft>public>outlook>fax (more info?) |
|
|
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. |
|
| Back to top |
|
 |
Russ Valentine [MVP-Outlo External

Since: Jan 09, 2004 Posts: 8425
|
Posted: Tue Jun 22, 2004 1:49 pm Post subject: Re: sending fax with dotnet [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
AFAIK, WinFax SE cannot be accessed programmatically.
--
Russ Valentine
[MVP-Outlook]
"Emmanuel Guillot" <eguillot.RemoveThis@chez.com> wrote in message
news:%237rrSaEWEHA.1952@TK2MSFTNGP12.phx.gbl...
> 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.
>
><!-- ~MESSAGE_AFTER~ --> |
|
| Back to top |
|
 |
Ken Slovak - [MVP - Outlo External

Since: Oct 17, 2003 Posts: 3355
|
Posted: Tue Jun 22, 2004 1:49 pm Post subject: Re: sending fax with dotnet [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Correct. WinFax SE does not expose an object model or an API. WinFax Pro
does but not SE.
--
Ken Slovak
[MVP - Outlook]
<a style='text-decoration: underline;' href="http://www.slovaktech.com" target="_blank">http://www.slovaktech.com</a>
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
<a style='text-decoration: underline;' href="http://www.slovaktech.com/products.htm" target="_blank">http://www.slovaktech.com/products.htm</a>
"Russ Valentine [MVP-Outlook]" <russval.RemoveThis@mvps.org> wrote in message
news:u8TdypEWEHA.4048@TK2MSFTNGP12.phx.gbl...
> AFAIK, WinFax SE cannot be accessed programmatically.
> --
> Russ Valentine
> [MVP-Outlook]<!-- ~MESSAGE_AFTER~ --> |
|
| Back to top |
|
 |
Emmanuel Guillot External

Since: Jun 22, 2004 Posts: 2
|
Posted: Tue Jun 22, 2004 5:34 pm Post subject: Re: sending fax with dotnet [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
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) |
|
| Back to top |
|
 |
Ken Slovak - [MVP - Outlo External

Since: Oct 17, 2003 Posts: 3355
|
Posted: Tue Jun 22, 2004 5:34 pm Post subject: Re: sending fax with dotnet [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
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 Slovak
[MVP - Outlook]
<a style='text-decoration: underline;' href="http://www.slovaktech.com" target="_blank">http://www.slovaktech.com</a>
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
<a style='text-decoration: underline;' href="http://www.slovaktech.com/products.htm" target="_blank">http://www.slovaktech.com/products.htm</a>
"Emmanuel Guillot" <eguillot.RemoveThis@chez.com> wrote in message
news:uPXsRYGWEHA.2288@TK2MSFTNGP10.phx.gbl...
> 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)
>
><!-- ~MESSAGE_AFTER~ --> |
|
| Back to top |
|
 |
RajFlex External

Since: Sep 08, 2006 Posts: 1
|
Posted: Fri Sep 08, 2006 1:08 pm Post subject: Re: sending fax with dotnet [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Ken Slovak - [MVP - Outlook] wrote:
> [B]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!
--
RajFlex
------------------------------------------------------------------------
Posted via http://www.mcse.ms
------------------------------------------------------------------------
View this thread: http://www.mcse.ms/message780676.html |
|
| Back to top |
|
 |
|