james123 Posted November 7, 2009 Share Posted November 7, 2009 Hi, i want to create an email sender to MSN Hotmail.. NOT A SPAMMER! I want to Create an email sender for send email to my friends or other more Faster And i want to create it for practise programming in Autoit.. But i dont know how can i do it.. I Create some program but this program is more dificult.. i Begin the code Thanks for your Help #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1_1 = GUICreate("Email Sender", 229, 460, 192, 124) $SMTP = GUICtrlCreateInput("Serveur SMTP", 24, 32, 153, 21) $desti = GUICtrlCreateInput("Nom du Destinaire", 24, 72, 153, 21) $Adressee = GUICtrlCreateInput("Adresse du Destinaire", 24, 112, 153, 21) $adresser = GUICtrlCreateInput("Adresse qui recoit le message", 24, 152, 153, 21) $Texte = GUICtrlCreateEdit("", 24, 192, 153, 169) GUICtrlSetData(-1, "Texte") $MyButton1 = GUICtrlCreateButton("Go", 48, 392, 124, 30, $BS_FLAT) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Thanks for your Help Link to comment Share on other sites More sharing options...
james123 Posted November 7, 2009 Author Share Posted November 7, 2009 (edited) New code!! expandcollapse popup#include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1_1 = GUICreate("Email Sender", 229, 447, 192, 124) $SMTP = GUICtrlCreateInput("SMTP Server", 24, 16, 153, 21) $desti = GUICtrlCreateInput("Name of Destinator", 24, 80, 153, 21) $Adressed = GUICtrlCreateInput("Adress Of Destinator", 24, 112, 153, 21) $Texte = GUICtrlCreateEdit("", 24, 208, 153, 169) GUICtrlSetData(-1, "Texte") $MyButton1 = GUICtrlCreateButton("Go", 48, 400, 124, 30, $BS_FLAT) $adresser = GUICtrlCreateInput("Adress of receiver", 24, 144, 153, 21) $portse = GUICtrlCreateInput("Port of the server", 24, 48, 153, 21) $sujetmess = GUICtrlCreateInput("Subject of Message", 24, 176, 153, 21) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit $SMTP = GUICtrlRead($SMTP) $destinom = GUICtrlRead($desti) $Adressee = GUICtrlRead($Adressed) $receveurmessage = GUICtrlRead($adresser) $sujet = GUICtrlRead($sujetmess) $Texteenvoi = GUICtrlRead($Texte) $Port = GUICtrlRead($portse) Case $MyButton1 EndSwitch WEnd Thanks for your help Edited November 7, 2009 by james123 Link to comment Share on other sites More sharing options...
Zedna Posted November 7, 2009 Share Posted November 7, 2009 (edited) You were banned!! Ban evasion!Your previous locked topic:http://www.autoitscript.com/forum/index.php?showtopic=105119Reported again Edited November 7, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Zedna Posted November 7, 2009 Share Posted November 7, 2009 i want to create it for practise programming in Autoit..Then definitely open Autoit's helpfile "C:\Program Files\AutoIt3\AutoIt.chm" and do some learning lessons yourself. Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Valuater Posted November 7, 2009 Share Posted November 7, 2009 Zedna is on it! That is considered a Ban evasion. You wont get much help here and Valik will probably ban you for a longer period just for the evasion... not the program So, you will have time to read-up a little 8) Link to comment Share on other sites More sharing options...
Valik Posted November 7, 2009 Share Posted November 7, 2009 You wont get much help here and Valik will probably ban you for a longer period just for the evasion...Yeah, "forever" is usually a pretty long time. Link to comment Share on other sites More sharing options...
Recommended Posts