I have set a basic app to populate a message for outlook to send. How can I get it to automatically send without viewing the message and pressing send?
$Ok_Button1 = GUICtrlCreateButton("Send the E-Mail", 630, 10, 200, 25)
GUICtrlSetOnEvent($Ok_Button1, "Ok_Button1")
GUICtrlSetBkColor(-1, 0xffff01)
GUICtrlSetColor(-1, 0x0000ff)
GUICtrlSetFont(-1, 10, 900, 1, "Calibri")
Func Ok_Button1()
Local $sAddress = GUICtrlRead ($Input1) & GUICtrlRead ($input2)
Local $sSubject = GUICtrlRead($Input3)
Local $sBody = GUICtrlRead($Input4)
_INetMail($sAddress, $sSubject, $sBody)
EndFunc ;==>Ok_Button1