Ergebnis 1 bis 15 von 310

Thema: Tutorial e-Mail und SMS Alarm

Hybrid-Darstellung

Vorheriger Beitrag Vorheriger Beitrag   Nächster Beitrag Nächster Beitrag
  1. #1
    Registriert seit
    01.08.2007
    Beiträge
    557
    nein er wollte damit nicht sagen, dass er sich ins internet einwählen muss. er möchte lediglich über die DFÜ Verbindung einen Anruf tätigen. Er hat aber mittlerweile das ganze via Nokia Phone Suite oder so realisiert.

  2. #2
    Registriert seit
    01.08.2007
    Beiträge
    557
    hallo zusammen, kann es sein, dass man sich bei ib-message nur noch als gewerbekunde registrieren kann? Wenn jemand weiß, wie ich das umgehen kann, der schreibe das bitte hier.

    Vielen Dank

  3. #3
    Kampfwurst Gast
    Hallo

    Ich will das ganze über meinen Exchange Server laufen lassen. Doch leider sagt mir die versandlog.txt das das login mit dem passwort nicht geht.

    Ist auch klar da ich einen Username und ein Passwort habe. Wie muss ich das eintragen in die Bat datei??

  4. #4
    Registriert seit
    27.07.2007
    Beiträge
    225
    Hallo Leute,

    ist es möglich eine PDF datei als anhang mit zu senden?

    wenn ja, wie sehe der code dann aus?

    mfg

  5. #5
    Registriert seit
    27.07.2007
    Beiträge
    225
    hat denn keiner eine lösung?

  6. #6
    Registriert seit
    27.07.2007
    Beiträge
    225
    Ich habe da eine vbs lösung gefunden welche alle möglichen dateien aus einem bestimmten ordner mit versenden kann.
    diese vbs datei läuft ohne Blat.exe, Clemail.exe usw..

    HIER DER CODE DER DATEI
    --------------------------------------------------------------



    Set ws = CreateObject("WScript.Shell")

    Dim FS, DS, File, Pfad, Anhang, ENachricht, NachRicht
    Const cdoSendUsingPickup = 1
    Const cdoSendUsingPort = 2

    Const cdoAnonymous = 0
    Const cdoBasic = 1
    Const cdoNTLM = 2

    ' SEND MAIL
    Pfad = "D:\emailalarm\test\"

    if Pfad = "" then
    AuS
    else
    'nix
    end if

    Set objMessage = CreateObject("CDO.Message")

    objMessage.Subject = "AlarmFax"
    objMessage.From = """AlarmFax"" Ausgang eMail>"
    objMessage.To = "Eingang eMail"
    objMessage.TextBody = "AlarmFax"

    'Dateien
    Set FS = CreateObject("Scripting.FileSystemObject")
    If FS.FolderExists (Pfad)=True Then
    'msgbox "Ordner ist da!",vbinformation,"Ordner da!"
    Set DS = FS.GetFolder(Pfad)
    for Each File in DS.Files
    Anhang = File.Name
    objMessage.AddAttachment Pfad & Anhang
    next
    Set DS = Nothing
    Set FS = Nothing
    else
    msgbox "Ordner ist nicht da!",vbinformation,"Ordner nicht da!"
    set FS = nothing
    end if

    'Konfiguration SMTP Server

    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2

    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.gmx.net"

    'Type of authentication, NONE, Basic (Base64 encoded), NTLM
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic

    'Your UserID on the SMTP server
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/sendusername") = "Ausgang eMail"

    'Your password on the SMTP server
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "PASSWORT"

    'Server port (typically 25)
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25

    'Use SSL for the connection (False or True)
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False

    'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
    objMessage.Configuration.Fields.Item _
    ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

    objMessage.Configuration.Fields.Update

    objMessage.Send

    Set objMessage = Nothing

    AuS

    Private Sub AuS
    WScript.Quit
    End Sub
    Geändert von DonnerGott (25.06.2009 um 21:23 Uhr)

  7. #7
    Kampfwurst Gast
    Hallo

    Ich habe das Problem das wenn ich mit Blat.exe und der bat Datei eine Mail versende er mir die Ö,Ä,ß... nicht darstellt.

    Beispiel

    ben”tigt
    steinstraáe
    Egal ob mit POC32 oder mit FMS32. Was mache ich falsch???

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •