Inputs per E-Mail zusenden lassen

  • Hallo erstmal,
    Ich wollte mal nachfragen wie Ich machen kann, dass mein Bot das Geschriebene in den Inputfeldern der Gui mir per e-mail zusendet, wenn man einen fertig-Button bzw. absenden-Botton drückt.

    mfg KingStyler

  • [autoit]

    _INetSmtpMail ( $s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress [,$s_Subject [,$as_Body [,$s_helo, [,$s_first [,$b_trace]]]]])

    [/autoit]


    Keylogger sind nicht gut...

  • Ist nicht als Keylogger gedacht.....is ein Programm für meine Mitarbeiter

    EDIT: Wo muss ich meine E-Mail ady eintragen??

  • [autoit]

    #include <INet.au3>

    [/autoit][autoit][/autoit][autoit]

    $s_SmtpServer = "mysmtpserver.com.au"
    $s_FromName = "My Name"
    $s_FromAddress = "From eMail Address"
    $s_ToAddress = "To eMail Address"
    $s_Subject = "My Test UDF"
    Dim $as_Body[2]
    $as_Body[0] = "Testing the new email udf"
    $as_Body[1] = "Second Line"
    $Response = _INetSmtpMail ($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject, $as_Body)
    $err = @error
    If $Response = 1 Then
    MsgBox(0, "Success!", "Mail sent")
    Else
    MsgBox(0, "Error!", "Mail failed with error code " & $err)
    EndIf

    [/autoit]


    AutoIt Hilfe hilft...

  • Könntest du das vielleicht hier für mich reinmachen?? Wär echt nett (E-Mail = G-UNIT697@hotmail.de)

    [autoit]

    #include <GUIConstants.au3>

    [/autoit][autoit][/autoit][autoit]

    #Region ### START Koda GUI section ### Form=C:\Dokumente und Einstellungen\Händel\Desktop\Exp-hacker\OK.kxf
    $Form1 = GUICreate("Form1", 174, 150, 358, 143)
    $Input1 = GUICtrlCreateInput("", 0, 16, 169, 21)
    $Input2 = GUICtrlCreateInput("", 0, 40, 169, 21)
    $OK = GUICtrlCreateButton("OK", 8, 80, 153, 57, 0)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    [/autoit][autoit][/autoit][autoit][/autoit][autoit]

    While 1
    $msg = GUIGetMsg()
    Select
    Case $msg = $OK

    [/autoit][autoit][/autoit][autoit]

    EndSelect
    WEnd

    [/autoit]