How do I forward mail in Lotus Notes using VBA?

Drawleeh

New Member
Joined
Sep 2, 2021
Messages
34
Office Version
  1. 2016
  2. 2010
Platform
  1. Windows
I'm very inexperienced with VBA and even more so with LotusScript, I need to find a way to extract the subject line of my lotus notes inbox then compare that subject line with email addresses and then forward the emails to those addresses.

We have emails coming in with a set of unique identifiers. Those identifiers directly link to customer email addresses. Our current excel spreadsheet has a list of emails in column A and the unique identifiers in column B.

Would it be possible to run a macro to compare the subject line of all the emails in the inbox with column B for matches and then forward the emails individually to the email addresses in column A? Any help would be greatly appreciated.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try this code as a starting point for creating a more sophisticated macro for your needs. It looks for an email in the Lotus Notes Inbox with the specified subject and forwards it to the specified email address(es). It uses the VBA Like operator to find the email and therefore the subject can contain wildcards:


For example, the Test routine uses the * wildcard, so it finds the first email which starts with "Subject text".

Note that the code uses Lotus UI objects so Notes must be open and Mail must be the active tab.

VBA Code:
Option Explicit

#If VBA7 Then
    Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Private Declare PtrSafe Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As LongPtr) As LongPtr
#Else
    Private Declare Sub Sleep Lib "kernel32" (ByVal milliseconds As Long)
    Private Declare Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As Long) As Long
#End If


Public Sub Test()
    Forward_Email "Subject text*", "email1@address.com,email2@address.com"
End Sub


Public Sub Forward_Email(findSubjectLike As String, forwardToEmailAddresses As String)

    Dim NSession As Object
    Dim NMailDb As Object
    Dim NViewObj As Variant
    Dim NInboxView As Object
    Dim NDocument As Object
    Dim NUIWorkspace As Object              'All Lotus front-end UI classes are OLE only and must be declared As Object
    Dim NUIDocument As Object
    Dim NFwdUIDocument As Object
   
    Set NSession = CreateObject("Notes.NotesSession")           'OLE - late binding only
    Set NUIWorkspace = CreateObject("Notes.NotesUIWorkspace")
    Set NMailDb = NSession.CurrentDatabase

    'Find Inbox folder (view)
   
    For Each NViewObj In NMailDb.Views
        If NViewObj.IsFolder And NViewObj.Name = "($Inbox)" Then
            Set NInboxView = NViewObj
            Exit For
        End If
    Next

    'Find NotesDocument email in Inbox folder (view) with the specified subject
   
    Set NDocument = Find_Document(NInboxView, findSubjectLike)
   
    If Not NDocument Is Nothing Then
   
        'Open the email for read only in the Notes UI
       
        Set NUIDocument = NUIWorkspace.EditDocument(False, NDocument)
       
        'Forward the email, creating a new document in the UI
       
        NUIDocument.Forward
       
        'Get the new document to be forwarded
       
        Set NFwdUIDocument = NUIWorkspace.CurrentDocument
       
        'Enter To email address(es) (comma-separated)
       
        NFwdUIDocument.GoToField "To"
        NFwdUIDocument.InsertText forwardToEmailAddresses
       
        'Enter text in email body
       
        NFwdUIDocument.GoToField "Body"
        NFwdUIDocument.InsertText "This email was forwarded at " & Now
        NFwdUIDocument.InsertText vbLf

        'Send and close the forwarded document - the email is put in the Sent folder
       
        NFwdUIDocument.Send
        NFwdUIDocument.Close
       
        'Close the existing document, which is still open (read only) in the Notes UI
       
        Do
            Set NUIDocument = NUIWorkspace.CurrentDocument
            Sleep 100
            DoEvents
        Loop While NUIDocument Is Nothing
        NUIDocument.Close
       
    Else
   
        MsgBox "Email with the subject like " & vbCrLf & findSubjectLike & vbCrLf & "not found in Inbox"

    End If
   
    Set NUIDocument = Nothing
    Set NFwdUIDocument = Nothing
    Set NDocument = Nothing
    Set NMailDb = Nothing
    Set NUIWorkspace = Nothing
    Set NSession = Nothing
   
End Sub


'Find the document in a View which matches the specified subject

Private Function Find_Document(NView As Object, findSubjectLike As String) As Object

    Dim NThisDoc As Object
    Dim thisSubject As String
   
    Set Find_Document = Nothing
   
    Set NThisDoc = NView.GetFirstDocument
    While Not NThisDoc Is Nothing And Find_Document Is Nothing
        thisSubject = NThisDoc.GetItemValue("Subject")(0)
        If LCase(thisSubject) Like LCase(findSubjectLike) Then Set Find_Document = NThisDoc
        Set NThisDoc = NView.GetNextDocument(NThisDoc)
    Wend

End Function
 
Upvote 0
Try this code as a starting point for creating a more sophisticated macro for your needs. It looks for an email in the Lotus Notes Inbox with the specified subject and forwards it to the specified email address(es). It uses the VBA Like operator to find the email and therefore the subject can contain wildcards:


For example, the Test routine uses the * wildcard, so it finds the first email which starts with "Subject text".

Note that the code uses Lotus UI objects so Notes must be open and Mail must be the active tab.

VBA Code:
Option Explicit

#If VBA7 Then
    Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Private Declare PtrSafe Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As LongPtr) As LongPtr
#Else
    Private Declare Sub Sleep Lib "kernel32" (ByVal milliseconds As Long)
    Private Declare Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As Long) As Long
#End If


Public Sub Test()
    Forward_Email "Subject text*", "email1@address.com,email2@address.com"
End Sub


Public Sub Forward_Email(findSubjectLike As String, forwardToEmailAddresses As String)

    Dim NSession As Object
    Dim NMailDb As Object
    Dim NViewObj As Variant
    Dim NInboxView As Object
    Dim NDocument As Object
    Dim NUIWorkspace As Object              'All Lotus front-end UI classes are OLE only and must be declared As Object
    Dim NUIDocument As Object
    Dim NFwdUIDocument As Object
  
    Set NSession = CreateObject("Notes.NotesSession")           'OLE - late binding only
    Set NUIWorkspace = CreateObject("Notes.NotesUIWorkspace")
    Set NMailDb = NSession.CurrentDatabase

    'Find Inbox folder (view)
  
    For Each NViewObj In NMailDb.Views
        If NViewObj.IsFolder And NViewObj.Name = "($Inbox)" Then
            Set NInboxView = NViewObj
            Exit For
        End If
    Next

    'Find NotesDocument email in Inbox folder (view) with the specified subject
  
    Set NDocument = Find_Document(NInboxView, findSubjectLike)
  
    If Not NDocument Is Nothing Then
  
        'Open the email for read only in the Notes UI
      
        Set NUIDocument = NUIWorkspace.EditDocument(False, NDocument)
      
        'Forward the email, creating a new document in the UI
      
        NUIDocument.Forward
      
        'Get the new document to be forwarded
      
        Set NFwdUIDocument = NUIWorkspace.CurrentDocument
      
        'Enter To email address(es) (comma-separated)
      
        NFwdUIDocument.GoToField "To"
        NFwdUIDocument.InsertText forwardToEmailAddresses
      
        'Enter text in email body
      
        NFwdUIDocument.GoToField "Body"
        NFwdUIDocument.InsertText "This email was forwarded at " & Now
        NFwdUIDocument.InsertText vbLf

        'Send and close the forwarded document - the email is put in the Sent folder
      
        NFwdUIDocument.Send
        NFwdUIDocument.Close
      
        'Close the existing document, which is still open (read only) in the Notes UI
      
        Do
            Set NUIDocument = NUIWorkspace.CurrentDocument
            Sleep 100
            DoEvents
        Loop While NUIDocument Is Nothing
        NUIDocument.Close
      
    Else
  
        MsgBox "Email with the subject like " & vbCrLf & findSubjectLike & vbCrLf & "not found in Inbox"

    End If
  
    Set NUIDocument = Nothing
    Set NFwdUIDocument = Nothing
    Set NDocument = Nothing
    Set NMailDb = Nothing
    Set NUIWorkspace = Nothing
    Set NSession = Nothing
  
End Sub


'Find the document in a View which matches the specified subject

Private Function Find_Document(NView As Object, findSubjectLike As String) As Object

    Dim NThisDoc As Object
    Dim thisSubject As String
  
    Set Find_Document = Nothing
  
    Set NThisDoc = NView.GetFirstDocument
    While Not NThisDoc Is Nothing And Find_Document Is Nothing
        thisSubject = NThisDoc.GetItemValue("Subject")(0)
        If LCase(thisSubject) Like LCase(findSubjectLike) Then Set Find_Document = NThisDoc
        Set NThisDoc = NView.GetNextDocument(NThisDoc)
    Wend

End Function
I wish I could hug you, brilliant, worked perfectly and the rest I can figure out, thank you very much!
 
Upvote 0
Try this code as a starting point for creating a more sophisticated macro for your needs. It looks for an email in the Lotus Notes Inbox with the specified subject and forwards it to the specified email address(es). It uses the VBA Like operator to find the email and therefore the subject can contain wildcards:


For example, the Test routine uses the * wildcard, so it finds the first email which starts with "Subject text".

Note that the code uses Lotus UI objects so Notes must be open and Mail must be the active tab.

VBA Code:
Option Explicit

#If VBA7 Then
    Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Private Declare PtrSafe Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As LongPtr) As LongPtr
#Else
    Private Declare Sub Sleep Lib "kernel32" (ByVal milliseconds As Long)
    Private Declare Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As Long) As Long
#End If


Public Sub Test()
    Forward_Email "Subject text*", "email1@address.com,email2@address.com"
End Sub


Public Sub Forward_Email(findSubjectLike As String, forwardToEmailAddresses As String)

    Dim NSession As Object
    Dim NMailDb As Object
    Dim NViewObj As Variant
    Dim NInboxView As Object
    Dim NDocument As Object
    Dim NUIWorkspace As Object              'All Lotus front-end UI classes are OLE only and must be declared As Object
    Dim NUIDocument As Object
    Dim NFwdUIDocument As Object
  
    Set NSession = CreateObject("Notes.NotesSession")           'OLE - late binding only
    Set NUIWorkspace = CreateObject("Notes.NotesUIWorkspace")
    Set NMailDb = NSession.CurrentDatabase

    'Find Inbox folder (view)
  
    For Each NViewObj In NMailDb.Views
        If NViewObj.IsFolder And NViewObj.Name = "($Inbox)" Then
            Set NInboxView = NViewObj
            Exit For
        End If
    Next

    'Find NotesDocument email in Inbox folder (view) with the specified subject
  
    Set NDocument = Find_Document(NInboxView, findSubjectLike)
  
    If Not NDocument Is Nothing Then
  
        'Open the email for read only in the Notes UI
      
        Set NUIDocument = NUIWorkspace.EditDocument(False, NDocument)
      
        'Forward the email, creating a new document in the UI
      
        NUIDocument.Forward
      
        'Get the new document to be forwarded
      
        Set NFwdUIDocument = NUIWorkspace.CurrentDocument
      
        'Enter To email address(es) (comma-separated)
      
        NFwdUIDocument.GoToField "To"
        NFwdUIDocument.InsertText forwardToEmailAddresses
      
        'Enter text in email body
      
        NFwdUIDocument.GoToField "Body"
        NFwdUIDocument.InsertText "This email was forwarded at " & Now
        NFwdUIDocument.InsertText vbLf

        'Send and close the forwarded document - the email is put in the Sent folder
      
        NFwdUIDocument.Send
        NFwdUIDocument.Close
      
        'Close the existing document, which is still open (read only) in the Notes UI
      
        Do
            Set NUIDocument = NUIWorkspace.CurrentDocument
            Sleep 100
            DoEvents
        Loop While NUIDocument Is Nothing
        NUIDocument.Close
      
    Else
  
        MsgBox "Email with the subject like " & vbCrLf & findSubjectLike & vbCrLf & "not found in Inbox"

    End If
  
    Set NUIDocument = Nothing
    Set NFwdUIDocument = Nothing
    Set NDocument = Nothing
    Set NMailDb = Nothing
    Set NUIWorkspace = Nothing
    Set NSession = Nothing
  
End Sub


'Find the document in a View which matches the specified subject

Private Function Find_Document(NView As Object, findSubjectLike As String) As Object

    Dim NThisDoc As Object
    Dim thisSubject As String
  
    Set Find_Document = Nothing
  
    Set NThisDoc = NView.GetFirstDocument
    While Not NThisDoc Is Nothing And Find_Document Is Nothing
        thisSubject = NThisDoc.GetItemValue("Subject")(0)
        If LCase(thisSubject) Like LCase(findSubjectLike) Then Set Find_Document = NThisDoc
        Set NThisDoc = NView.GetNextDocument(NThisDoc)
    Wend

End Function
So this code has been working brilliantly so far, I have run into one issue. What if I need to run it on an inbox that isn't my own? I have an inbox opened up but every time I run the code it tries to take the information from my own inbox instead of this new inbox I have open. How do I set it up so it runs and compares information within this new inbox instead of my own one.
 
Upvote 0
So this code has been working brilliantly so far, I have run into one issue. What if I need to run it on an inbox that isn't my own? I have an inbox opened up but every time I run the code it tries to take the information from my own inbox instead of this new inbox I have open. How do I set it up so it runs and compares information within this new inbox instead of my own one.

After some time experimenting with this issue I'm not sure if it's possible. This is the best I could do.

Replace these lines:

VBA Code:
    Set NMailDb = NSession.CurrentDatabase

    'Find Inbox folder (view)
   
    For Each NViewObj In NMailDb.Views
        If NViewObj.IsFolder And NViewObj.Name = "($Inbox)" Then
            Set NInboxView = NViewObj
            Exit For
        End If
    Next

    'Find NotesDocument email in Inbox folder (view) with the specified subject
   
    Set NDocument = Find_Document(NInboxView, findSubjectLike)
with:
VBA Code:
    'Find NotesDocument email in current UI view (e.g. an Inbox tab) with the specified subject
    
    Set NDocument = Find_Document(NUIWorkSpace.CurrentView.View, findSubjectLike)
However, in my tests, although the email is found in the currently active UI Inbox tab and successfully forwarded, the sent email is put in the Sent items view of the default Inbox, not the Sent items view of the UI Inbox.
 
Upvote 0
After some time experimenting with this issue I'm not sure if it's possible. This is the best I could do.

Replace these lines:

VBA Code:
    Set NMailDb = NSession.CurrentDatabase

    'Find Inbox folder (view)
  
    For Each NViewObj In NMailDb.Views
        If NViewObj.IsFolder And NViewObj.Name = "($Inbox)" Then
            Set NInboxView = NViewObj
            Exit For
        End If
    Next

    'Find NotesDocument email in Inbox folder (view) with the specified subject
  
    Set NDocument = Find_Document(NInboxView, findSubjectLike)
with:
VBA Code:
    'Find NotesDocument email in current UI view (e.g. an Inbox tab) with the specified subject
   
    Set NDocument = Find_Document(NUIWorkSpace.CurrentView.View, findSubjectLike)
However, in my tests, although the email is found in the currently active UI Inbox tab and successfully forwarded, the sent email is put in the Sent items view of the default Inbox, not the Sent items view of the UI Inbox.
Hmm okay thats not bad actually. One more question I had though regarding sending from a separate inbox, would I be able to send via that inbox ID. Currently with this method I am sending via my own ID even if the emails aren't in my own inbox. I know this might be considered spoofing by Lotus Notes but is there no way to just change the sender ID to the inbox I am sending the files from?
 
Upvote 0
One more question I had though regarding sending from a separate inbox, would I be able to send via that inbox ID. Currently with this method I am sending via my own ID even if the emails aren't in my own inbox. I know this might be considered spoofing by Lotus Notes but is there no way to just change the sender ID to the inbox I am sending the files from?
I really don't know. Again, some research and experimentation would be required, but I've spent long enough on this.
 
Upvote 0

Forum statistics

Threads
1,215,775
Messages
6,126,829
Members
449,343
Latest member
DEWS2031

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top