Mail versandt über Windows Live Mail

  • Hallo,

    man kann ja mit

    [autoit]


    $oOApp = ObjCreate("Outlook.Application")
    $oOMail = $oOApp.CreateItem($olMailItem)
    $MailAdresse = "info@web.de"
    $MSubjct = "Ich bin die Betreffzeile"
    $MBody="Bla Text Inhalt Danke "&chr(13)&"Boing Boing"
    With $oOMail
    .To = $MailAdresse
    .Subject =$MSubjct
    .Body = $MBody
    .BodyFormat = $olFormatRichText
    .Attachments.Add (@ScriptDir & "\Anhang.pdf")
    .Importance = $olImportanceNormal
    .Display
    EndWith

    [/autoit]

    eine neue Mail unter Outlook erstellen. Hat jemand schon mal was gefunden/erstellt, wie das mit "Windows Live Mail" geht?

    Gruß
    Ralf