Automated FTP Sendmail Attempt

Please support our Perl advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Oct 2006
Posts: 2
Reputation: wdean is an unknown quantity at this point 
Solved Threads: 0
wdean wdean is offline Offline
Newbie Poster

Automated FTP Sendmail Attempt

 
0
  #1
Oct 24th, 2006
Got a quick question.

I have created a simple automated FTP script that goes out and snags my file, then reads it and drops it into an array. Following that, I want for the script to send a mail out with the contents of array (the recipient and subject are static).

A few things I want to point out:
a) Intermediate at perl, so my code may not be the cleanest.
b) I am using postfix for MTA and it is functioning properly.

I have tried using both open(MAIL) and open(SENDMAIL) but when using these, I get a mail in my Dead Mail box on my mail server showing that the TO was not passed correctly, most likely due to my error...

Script below (MAIL section omitted, as its not working)
[code]
#!/usr/bin/perl
$dir = "autorpt";
$file = "AUTOPRT.log";

use Net::FTP;
my $host="*********";

$ftp=Net::FTP->new($host,Timeout=>340) or die "Can't connect";
$ftp->login("*****","*****") or die "Can't Login";
$ftp->cwd("$dir") or die "Can't CD";
$ftp->get("$file") or die "Can't Get";
$ftp->quit;

open(FILE, "$file") or die"Can't Open";
@msg = <FILE>;
close(FILE);
[code]

Any help or insight would be greatly appreciated.

Thanks,
William
Last edited by wdean; Oct 24th, 2006 at 2:08 pm. Reason: die("Can't Open"); to die"Can't Open";
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 2
Reputation: wdean is an unknown quantity at this point 
Solved Threads: 0
wdean wdean is offline Offline
Newbie Poster

Re: Automated FTP Sendmail Attempt

 
0
  #2
Oct 24th, 2006
Well, disregard this, got it to work.

My error was in the addressing on my print MAIL "To...

Where " should have been '.

Oh well, live and learn.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Perl Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC