Code:
; Script Start - Add your code below here
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Program Files (x86)\Koda\Forms\mock email\Form1.kxf
$Form1 = GUICreate("New Email", 640, 456, 221, 312)
$Label1 = GUICtrlCreateLabel("To:", 8, 10, 20, 17)
$Label2 = GUICtrlCreateLabel("CC:", 8, 43, 21, 17)
$Input1 = GUICtrlCreateInput("", 72, 8, 545, 21)
$Input2 = GUICtrlCreateInput("", 72, 41, 545, 21)
$Label3 = GUICtrlCreateLabel("Subject:", 8, 76, 43, 17)
$Input3 = GUICtrlCreateInput("", 71, 74, 545, 21)
$Label4 = GUICtrlCreateLabel("Message:", 8, 104, 50, 17)
$Button1 = GUICtrlCreateButton("Send", 544, 408, 75, 25, $WS_GROUP)
$Input4 = GUICtrlCreateInput("", 72, 104, 545, 277, $ES_MULTILINE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd