>This is a multi-part message in MIME format.
>
>------=_NextPart_000_0005_01C08773.36674420
>Content-Type: text/plain;
> charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>Does Anybody know how to send an e-mail with an application in Clipper =
>or if exist any external application that does it with batch commands ?
>Excuse my bad english and thank you very much
>
>Stefano
>
Hello Stefano,
Nothing wrong with your English...but we do try not to use HTML when
posting in this newsgroup.
I send and receive emails successfully using the MailSend and MailGrab
shareware software available from Jim Lawless. Visit his website at
Regards,
Ross McKenzie
ValuSoft
Melbourne Australia
Try Blat to send email from dos batch files.. I think you can find it in
Oasis.
Alex
Stefano Neri a écrit :
> Does Anybody know how to send an e-mail with an application in Clipper
> or if exist any external application that does it with batch commands
> ?Excuse my bad english and thank you very much Stefano
"Martin" <mar...@jotika.co.uk> schreef in bericht
news:SLBd6.6779$qC1.72562@NewsReader...
BLAT
Blat is a Public Domain Windows 95/NT console utility that sends the
contents of a file in an e-mail message using the SMTP protocol.
Download it from:
http://pages.infinit.net/che/blat/blat.html
http://www.interlog.com/~tcharron/blat.html
For blat support, you could try http://www.egroups.com/community/blat
From Clipper, just
command := "blat filename -to vali...@my-deja.com"
run(command)
works fine.
GETMAIL
http://www.interlog.com/~tcharron/getmail.html
Getmail is free for non-commercial use. For getmail support community,
try http://www.egroups.com/community/getmail
I have tested Getmail from Clipper and command line, both okay for our
needs.
ENCODE/DECODE
If all you want is to encode/decode (no mail functionality builtin)
check out the following:
uudeview
<http://www.informatik.uni-frankfurt.de/~fp/uudeview/>
mpack/munpack
<ftp://ftp.andrew.cmu.edu/pub/mpack/>
and there are many other encoders/decoders freely available.
OTHER
We use Pegasus Mail, and create a "queued email' format (prior to final
form), and run Pegasus (WIN) from Clipper to add to Pmail folders and od
the final format ready for the output queue. Also as we send
attachments, that (encoding) is left for Pegasus as well. This way, if
users are either on a dialup or 'dedicated' line, the email is sent
(finally) from Pegasus.
You might want to think of creating a similar method to create the email
in a queue, to be sent by your favourite emailer.
Peter
Sent via Deja.com
http://www.deja.com/
[Session Started : 2/8/01 12:52:49 AM]
Body : "C:\FW20\DOWNLOAD\TEST.TXT"
Fatal Error :
[Session ended]
Manos Aspradakis <ma...@otenet.gr> wrote in message
news:958ttg$jhm$1...@usenet.otenet.gr...
> Hi all,
>
> The attached Windows script will send email & file attachements using
Win98
> MAPI services and MS Outlook automation.
>
> Features:
> ------------
> - Command line interface
> - Sends email including file attachments
> - logs sessions and errors in mail.log
>
>
> use:
> -----
>
> to use with windows interface:
>
> WScript SendMail.vbs /AT:<attachments list,...> /TO:<recipient>
> /SU:<subject> /BO:<body text file>
>
> or with windows terminal mode interface:
>
> CScript SendMail.vbs /AT:<attachments list,...> /TO:<recipient>
> /SU:<subject> /BO:<body text file>
>
>
> notes:
> --------
>
> - For attachment files and the body text file, full path to file(s) is
> assumed. If full path is not included then the current folder where the
> script is located is assumed.
> - Windows interface will popup alert boxes whereas terminal interface will
> write to stdout.
> - All errors included missing/invalid attachments will be logged.
> - Sometimes outlook will not respond in time and the script will fail
> (ellegantly I hope). If this is the case increase the two WScript.Sleep()
> delays in the script (currently 500).
>
> return values are:
> -1 : Fatal error
> 0 : No command line parameters
> 1 : Everything ok
>
>
> requirements:
> ------------------
>
> 1. MS Outlook
>
> 2. Windows scripting Host (WSH) :
> http://www.microsoft.com/scripting/downloads/v55/other/scr55en.exe
>
> 3. Windows 95 users without IE 4.00 must install DCom from:
> http://www.microsoft.com/com/dcom/dcom95/dcom1_3.asp
>
>
>
> If you are interested in NT-MAPI or ND-CDO email interfaces, please
contact
> me for instructions.
>
> regards
>
> manos Aspradakis
> maspr@oneworld gr
>
>
>
>
>
>
please comment out the "on error resume next" statement at the top of the
program so you get an alert box and termination of the script. Normally the
error will be logged in the log file - if its not then something REALLY
fatal happened.
Do you have Outlook installed and is it your default mail client ?
Don't use blank spaces in the SUBJECT & BODY command line arguments or they
will be taken as command line arguments also (and ignored)
Please let me know the error description when you remove the error
control...
regards
Manos,Greece
maspr@oneworld_gr
"Dutch" <eas...@cscoms.com> wrote in message
news:95s29c$1eps$1...@news.cscoms.com...