1. Dashboard
  2. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  3. Forenregeln
  4. Forum
    1. Unerledigte Themen
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. AutoIt.de - Das deutschsprachige Forum.
  2. Mitglieder
  3. Arah

Beiträge von Arah

  • Problem | Inhalt der Inpubox per E-Mail versenden

    • Arah
    • 1. März 2015 um 15:30

    Vielen Danke für deine rege Beteiligung, jedoch erhalte ich immer nachdem icn das Script gestartet habe eine Fehlermeldung:

    "Error code:2 Descritption:Der Server hat die Absenderadresse zurückgewiesen. Die Serverantwort lautet: 530 Must issue a STARTTLS command first"

    Irgendwelche Lösungen für das Problem bekannt?

  • Problem | Inhalt der Inpubox per E-Mail versenden

    • Arah
    • 1. März 2015 um 14:25

    Hallo liebe Gemeinde,

    ich bin gerade total am verzweifeln... Ich versuche schon seit paar Tagen fieberhaft die Inhalte einer Inputbox an meine E-Mail zu senden, doch leider funktioniert das überhaupt nicht. :thumbdown:
    Wenn ihr so nett seid, und mal rüberguckt. :) (bin leider ein totaler Anfänger)


    C
    #include <ButtonConstants.au3>
    #include <ComboConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <INet.au3>
    
    
    $Form1 = GUICreate("E-Mail senden", 301, 161, 191, 123)
    $Input1 = GUICtrlCreateInput("Text", 8, 8, 273, 21)
    $Button1 = GUICtrlCreateButton("Senden!", 56, 128, 171, 25)
    GUISetState(@SW_SHOW)
    
    
    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Exit
    
    
    Case $Button1
    Local $objEmail = ObjCreate("CDO.Message")
    $objEmail.From = 'Ich__'
    $objEmail.To = 'Er___'
    $objEmail.Subject = 'Betreff123'
    $objEmail.Textbody = 'Nachricht123'
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.web.de"
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = "___email@web.de"
    $objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "_passwort"
    $objEmail.Configuration.Fields.Update
    $objEmail.Send
    $objEmail=''
    EndSwitch
    WEnd
    Alles anzeigen

Spenden

Jeder Euro hilft uns, Euch zu helfen.

Download

AutoIt Tutorial
AutoIt Buch
Onlinehilfe
AutoIt Entwickler
  1. Datenschutzerklärung
  2. Impressum
  3. Shoutbox-Archiv
Community-Software: WoltLab Suite™