So then you use just the email facility, yes?
Here is a weird thing: today I got this script to work just fine on my work machine, but it fails on my home machine. Here is the total script:
#include <IE.au3>
#include <file.au3>
$oIE = _IECreate ("www.thisismysite.com/RecentSubmissions.php")
$sHTML = _IEBodyReadHTML ($oIE)
_IELoadWait($oIE)
_IENavigate ($oIE,"www.thisismysite.com/blog/wp-admin")
_IELoadWait($oIE)
Sleep(1000)
$oForm = _IEFormGetObjByName ($oIE, "loginform")
$oQuery = _IEFormElementGetObjByName ($oForm, "log")
_IEFormElementSetValue ($oQuery, "admin")
$oQuery2 = _IEFormElementGetObjByName ($oForm, "pwd")
_IEFormElementSetValue ($oQuery2, "mypwd")
_IEFormSubmit ($oForm, 0)
_IELoadWait($oIE)
_IELinkClickByText ($oIE, "Write")
_IELoadWait($oIE)
Sleep(1000)
$oTextForm = _IEFormGetObjByName ($oIE, "post")
$oQuery3 = _IEFormElementGetObjByName ($oTextForm, "content")
_IEFormElementSetValue ($oQuery3, $sHTML)
On IE7 at work this is going just fine. But here at home on IE7 where I really need to use this, the script stops gracefully after click on "Write".
Any ideas?