> Hi can anyone give me any tips on how to interact with vms mail?
> I thought something like this may work but it doesn't play ball,
> open(MAIL,"|mail") || die "Can't open mail\n";
> print MAIL "send\n";
> print MAIL "martin\n";
> print MAIL "my subject\n";
> print MAIL "some body text\n";
> pr
unlink $file;
>
> --Bob van Keuren
> Advanced Marketing Services
> San Diego
>
>
> -Original Message-----
> From: Martin Evans [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 28, 2003 7:20 am
> To: [EMAIL PROTECTED]
> Subject: RE: using vms mail
>
>
>
>
Evans [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2003 7:20 am
To: [EMAIL PROTECTED]
Subject: RE: using vms mail
Many thanks for your replies, I've managed to get it going and keep it
simple whith VMS mail, part of my problem was some previous testing I had
been doing with "deliver&
Many thanks for your replies, I've managed to get it going and keep it
simple whith VMS mail, part of my problem was some previous testing I had
been doing with "deliver" (freeware cd tool for filtering) it would also
appear that you don't need the control-z (which I should have had as
"\cZ") or t
Martin Evans wrote:
> Hi can anyone give me any tips on how to interact with vms mail?
I haven't personally used it, but how about VMS::Mail?
Available from a friendly CPAN mirror near you.
However, it's quite old (2000, inital release), listed as "cdc"
(pre-alpha, support by developer, C and per
Michael G Schwern wrote:
On Mon, Jul 28, 2003 at 01:06:36PM +0100, Martin Evans wrote:
Hi can anyone give me any tips on how to interact with vms mail?
Could you use Mail::Sendmail (which, despite the name, is not an interface
to sendmail) or Net::SMTP instead?
Or MIME::Lite? If it really does
On Mon, Jul 28, 2003 at 01:06:36PM +0100, Martin Evans wrote:
> Hi can anyone give me any tips on how to interact with vms mail?
Could you use Mail::Sendmail (which, despite the name, is not an interface
to sendmail) or Net::SMTP instead?
--
Let me check my notes.
http://www.sluggy.com
Hi can anyone give me any tips on how to interact with vms mail?
I thought something like this may work but it doesn't play ball,
open(MAIL,"|mail") || die "Can't open mail\n";
print MAIL "send\n";
print MAIL "martin\n";
print MAIL "my subject\n";
print MAIL "some body text\n";
print MAIL "^Z";
p