title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Application.MailLogon method (Project) |
project-server |
|
0047a6ea-ea36-498c-e744-c4c88a08baae |
06/08/2017 |
medium |
Logs on to a MAPI mail system and establishes a mail session. A mail session must be established before mail or document routing methods can be used.
expression. MailLogon
( _Name_
, _Password_
, _DownloadNewMail_
)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Name | Optional | String | The mail account name. |
Password | Optional | String | The mail account password. |
DownloadNewMail | Optional | Boolean | True if new mail is downloaded immediately. |
Previously established mail sessions are logged off before an attempt is made to establish the new session. Omit both Name and Password to use the default mail session for the system.
The following example logs on to the mail system and downloads any new mail.
Sub SessionLogon()
If IsNull(MailSession) Then
Application.MailLogon "oscarx", "mypassword", True
End If
End Sub
[!includeSupport and feedback]