MailLogon Method

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.

Syntax

expression**.MailLogon(Name, Password, DownloadNewMail)**

*expression   *     Optional. An expression that returns an Application object.

Name    Optional String. The mail account name.

Password    Optional String. The mail account password.

DownloadNewMail    Optional Boolean. True if new mail is downloaded immediately.

Remarks

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.

Example

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

Applies to | Application Object

See Also | MailLogoff Method | MailRoutingSlip Method | MailSend Method | MailSendScheduleNote Method | MailSession Method | MailSystem Method