Прости за мой запоздалый ответ.
Lotus всегда создает новый графический интерфейс для сообщений при выполнении note.exe, поэтому я пишу VBScript для решения этой проблемы.
set shell = CreateObject("WScript.Shell")
shell.run"YourLotusPath\notes.exe"
WScript.Sleep 1000
shell.run"YourLotusPath\notes.exe mailto:username@abc.com?subject=Test?body=Test?attach=test.txt"
WScript.Sleep 2000
shell.SendKeys"{TAB}"
shell.SendKeys"{ENTER}"
shell.SendKeys"^(+{ENTER})" <== Ctrl+Shift+Enter, which is lotus "send" shortcut key.
WScript.Sleep 1000
shell.SendKeys"{ENTER}"
Затем просто выполните сценарий VBScript с помощью cscript sendmail.vbs