Ok well i have a simple script that does this
$o_editform = _IEFormGetObjByName ($oIE, "frmMessage")
$o_subject = _IEFormElementGetObjByName ($o_editform, "messagesubject")
_IEFormElementSetValue ($o_subject, $subject)
$o_mailbody = _IEFormElementGetObjByName ($o_editform, "messagetext")
_IEFormElementSetValue ($o_mailbody, $mailbody)
$oSubmit = _IEGetObjByName ($oIE, "btnSubmit")
_IEAction ($oSubmit, "click")
_IELoadWait ($oIE)
as it runs it slowly adds 1MB to used RAM and it will keep going... I was testing to see if it would stop but it hit 2,000MB used (IEXPLORE.EXE)
is there something I'm doing wrong?