Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sending email through Groupwise
Message
From
20/08/2001 16:46:30
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00543209
Message ID:
00546431
Views:
28
>
>Henry,
>
>First of all, thanks a lot for the code. Now there are the questions:
>
>1)oMessage.Recipients.Add("Internet:henry@profutures.com"), right? How can you check, if this address in GroupWise Address book or not (or it's better to always use internet addresses?)

The code in the example uses calls to add an address book display name to the "to:" line, then resolve that entry against the user's address book.
oMessage.Recipients.AddByDisplayName(SYSTEM_ADMIN)
oMessage.Recipients.Resolve()
Using .Add() skips any use of the local address book.

>
>2) How do you add attachments (one or few)?
In the example,
oMessage.Attachments.Add([filename]). Make sure the filename exists. You can repeat this command to add several files.


>
>3) Does it depend on which e-mail client is installed on PC (e.g. I can have GroupWise installed, but have Outlook Express as default mail client)?
GroupWise must be installed for this to work.

>
>4) Do you have some code to check a presence of GroupWise (in case, GroupWise is not installed on the PC)?
Use VARTYPE() or TYPE() to determine if the GroupWise object was created.
-Henry-
Previous
Reply
Map
View

Click here to load this message in the networking platform