home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / _INetMail.au3 < prev    next >
Text File  |  2004-12-29  |  387b  |  6 lines

  1. #include <INet.au3>
  2.  
  3. $Address = InputBox('Address', 'Enter the E-Mail address to send message to')
  4. $Subject = InputBox('Subject', 'Enter a subject for the E-Mail')
  5. $Body = InputBox('Body', 'Enter the body (message) of the E-Mail')
  6. MsgBox(0,'E-Mail has been opened','The E-Mail has been opened and process identifier for the E-Mail client is ' & _INetMail($address, $subject, $body))