vote up 2 vote down star

What is the best way to send e-mail using outlook express from the command line? It has to be an automated operation with no user interaction. There will be some .jpg files in attachment. Thanks.

flag

17% accept rate

5 Answers

vote up 1 vote down

Perhaps this post is helpful. It speaks pre-populating a new e-mail message and including a file.

link|flag
vote up 1 vote down

Does it really need to use Outlook Express to send the email?

Can't you use a third-party command line email tool or do you need it to use Outlook Express' settings and for the mails to end up in the Sent folder?

If you can use a third-party tool, something like absoluteTools SendMail CMD might do the job.

link|flag
vote up 0 vote down

Outlook Express and not Microsoft Outlook

link|flag
have you tried the above with Outlook Express? – Aron Rotteveel Oct 31 '08 at 11:23
vote up 0 vote down

This thread: Send mail from a Windows script might help you, I think.

link|flag
vote up 0 vote down

Quick'n dirty AutoIt script, you can modify it to accept parameters from the command line:

; Send a mail vía outlook "automation"

$sRcpt = "test@test.com"
$sSubj = "Test subject"
$sBody = "This is a test"
$sAttach = "g:\AutoIt\AnHoras.PRG"

If Not WinActivate ("[REGEXPTITLE:.*\- Outlook Express]") Then
    RunWait ("d:\Archivos de programa\Outlook Express\msimn.exe")   ; Set your path to the Outlook .exe
Endif

Send ("!anm")   ; Archivo->Nuevo->Mensaje (in spanish, sorry, I suppose that in english it will be File->New->Message)
Send ($sRcpt & "{Tab 3}")
Send ($sSubj & "{Tab}")
Send ($sBody)

If $sAttach <> "" Then
    Send ("!i{Enter}" & $sAttach & "{Enter}")      ; Insertar adjunto (Insert->Attachment)
EndIf

Send ("!a{Down}{Enter}")        ; Archivo->Enviar mensaje (File->Send message)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.