Hi, here's a sample copy of code
Private Sub Command3_Click()
Dim sDatabase As String
Dim sServer As String
Dim sWindowsPath As String
sServer = "UK_RLT/AS/RTY"
sDatabase = "Mail\rtl101.nsf"
Dim Session As Object
ChDir "x:\notes"
MsgBox (App.Path)
Set Session = CreateObject("Notes.NotesSession"

Dim DataBase As Object
Set DataBase = Session.GETDATABASE(sServer, sDatabase)
DataBase.OPENMAIL
Dim Document As Object
Set Document = DataBase.CREATEDOCUMENT()
Document.Form = "Memo"
With Document
.SendTo = "rtl101@csc.com"
.Subject = "Test1 OLE automation"
.Body = "Test1 OLE"
.From = Session.COMMONUSERNAME
.SAVEMESSAGEONSEND = True
.SEND True
End With
End Sub
Cheers
Jas