HTTP request from outlook script

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

Does anyone know a way to have an outlook script send an
http request? Want to send a message to a web site
whenever certain messages arrive.
 
Sorry to reply to this kind of old thread. The other response didn't seem
like it would do what you wanted so I figured I'd post this from Dr. Gui

'Create XMLHTTP Object to Prepare to send XML across HTTP.
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")

'Prepare the XMLHTTP Request object to issue a synchronous HTTP POST
'request to the URL to send the XML Tree.
xmlhttp.open "POST","http://mattison/ReturnXML/ReturnXMLdata.aspx",
false

'Send the HTTP request
xmlhttp.send
 
Back
Top