Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Accessing MS Outlook password.
Message
From
27/10/2009 19:27:52
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Accessing MS Outlook password.
Miscellaneous
Thread ID:
01431786
Message ID:
01431786
Views:
118
accessing MS outlook on a exterior computer requires a password. i have the password - lets call it '123456'.
once the login transpires is there a way to insert this password into the logon() code?

thanks

k
*******************************************
PROCEDURE SendViaOutlook(tcReturn, tcTo, tcSubject, tcBody, taFiles, tcCC, tcBCC, tlHTMLFormat, tnImportance, tlOpenEmail)
*******************************************
LOCAL loOutlook, loItem, lnCountAttachments, loMapi
TRY
loOutlook = CREATEOBJECT("outlook.application")
loMapi = loOutLook.GetNameSpace("MAPI")
loMapi.Logon()
loItem = loOutlook.CreateItem(0)
WITH loItem
.Subject = tcSubject
.TO = tcTo
IF tlHTMLFormat
.HTMLBody = tcBody
ELSE
.Body = tcBody
ENDIF
Next
Reply
Map
View

Click here to load this message in the networking platform