請告訴我得到一個用戶的郵件的郵件服務器的縮寫名稱的最簡單的方法,當前用戶要具體獲取蓮花文件中的用戶的郵件服務器
1
A
回答
3
Function getUserMailServer() As NotesName
Dim session As New NotesSession
Dim maildb As New NotesDatabase("", "")
Call maildb.OpenMail
Dim nName As NotesName
Set nName = session.CreateName(maildb.Server)
Print("Server: " + nName.Abbreviated)
Set getUserMailServer = nName
End Function
maildb.OpenMail
給你的郵件數據庫的當前用戶。
maildb.Server
返回郵件數據庫的完整服務器名稱。
session.CreateName()
從服務器名稱創建NotesName對象。 (如maildb.Server
)。
2
您還可以使用NotesDirectory類的GetMailInfo方法。這使您可以獲取您指定的每個用戶的郵件數據庫。
mailinfo = notesDirectory.GetMailInfo(username)
mailinfo是含有一個字符串數組,用於指定用戶的信息以下一個變體:
Mail Server - Home mail server for the specified person.
BuildNumber - If getver is true, a string representation of the build number of the specified person's mail server, for example, "303". If getver is false, "".
DominoVersion - If getver is true, a string representation of the Domino version of the specified person's mail server, for example, "Build V80_07042006NP". If getver is false, "".
MailFile - Mail file for the specified person.
ShortName - Short form of the specified person's name.
MailDomain - Notes Domain of the specified person's mail address.
User Name - First entry in the list of user names honored for the specified person.
InternetMailAddress - Internet mail address for the specified person.
OutOfOffice - Out of Office service type. "1" indicates Agent, "2" indicates Service.
見IBM幫助here獲得更多信息。
相關問題
- 1. 獲取蓮花筆記文件UNID
- 2. 蓮花筆記中的截斷郵件
- 3. 在JAVA客戶端取得用戶郵件中的蓮花筆記
- 4. 蓮花筆記在多個文件夾中的電子郵件
- 5. 使用Domino.dll在RFC822中提取蓮花筆記郵件
- 6. 蓮花筆記Sql服務器遷移
- 7. 如何將郵件標記爲蓮花郵件(使用NCSO jar)?
- 8. 獲取來自POP3郵件服務器的郵件列表
- 9. 從IMAP服務器獲取新郵件
- 10. $蓮花筆記文件中的文件字段
- 11. 蓮花筆記代理無法在服務器上創建文件
- 12. 蓮花:需要在遠程服務器上創建一個文件
- 13. 通過javascript中的蓮花筆記發送郵件
- 14. 在.NET中獲取用戶的Exchange服務器和電子郵件地址
- 15. 獲取Facebook電子郵件的服務
- 16. 跨客戶端獲取郵件大小 - 服務器
- 17. 獲取文件窗體的Windows服務器到Linux服務器
- 18. 蓮花筆記,郵件即將作爲附件
- 19. Javascript文件讀取器onload(從服務器獲取文件)
- 20. 郵件通過代理不會在蓮花郵件中打開轉發指出
- 21. 蓮花筆記的電子郵件配置
- 22. 使用客戶端證書獲取SOAP服務器WSDL文件
- 23. 捕獲服務器端日誌文件中的用戶名
- 24. 的Gmail郵件服務器
- 25. 如何區分蓮花筆記中的電子郵件和聊天文檔
- 26. 如何使用C#發送蓮花筆記郵件#
- 27. 如何使用oauth2服務帳戶獲取登錄用戶的電子郵件?
- 28. 獲取iTunes用戶郵件?
- 29. 從收到的郵件服務器(POP)讀取郵件
- 30. 如何從交換Web服務獲取用戶郵件圖片
感謝您的回覆,如果我必須縮寫並將其作爲NotesName返回,那麼這將如何工作,林新蓮花腳本,所以如果我沒有意義,請糾正我 – Lappies
我改變了我的答案。我把代碼放在一個函數中,它將用戶的電子郵件服務器作爲NotesName對象返回。這不僅僅是服務器名稱,而且是一個具有諸如'.Abbreviated'或'.Common'等類屬性的對象。調用函數後,您可以決定要對結果執行的操作:將其存儲在文檔的名稱字段中或以某種形式顯示。 –
感謝隊友,完美工作 – Lappies