This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Hi
I have created a hotspot button in notes client and written a onClick event using lotusscript
Sub Click(Source As Button)
Dim objHttp
Dim statusNum As Double
Dim statusText As String
Dim xml As String
Dim xmlString As String
Set objHttp = CreateObject("Microsoft.XMLHTTP")
url=|http://localhost:9080/tr/review/1/artifact/1/comment|
objHttp.open "GET", url, False, "", ""
objHttp.setRequestHeader "Content-type", "text/xml"
objHttp.send(req)
statusText = objHttp.statusText
statusNum = objHttp.status
xml = objHttp.responseText
xmlString = Cstr(xml)
Msgbox statusText
Msgbox statusNum
Msgbox xmlString
End Sub
The code works fine .
But now i want to send a email to notes client which programmatically create the button and call this onClick event when user clicks the button in the mail.
PS:I had a java code which is sending mail using smtp and as html text.
Feedback number WEBB9AKAWX created by ~Keiko Fezresonflar on 08/14/2013
Status: Open
Comments: