Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

E-mail error

Status
Not open for further replies.

XxGNxX

Programmer
Apr 13, 2010
1
0
0
CA
I use the following script to open up outlook express and grab all e-mail contents. However, I only get a bunch of pipelines (|) instead of characters. I can't find anybody else who has run across this online, and was wondering what the problem is. Here's the code:

open(MAILER, "mail.exe special -s \"$srcFld\" -d \"$destFld\"|");
while(<MAILER>)
{
chomp;
push(@listing, $_);
}
close(MAILER);
 
What is mail.exe? Is it a standard part of Outlook Express or some third party utility to access the OE mailboxes?

Annihilannic.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top