Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
use LWP::Simple; use Mail::Mailer; $url = 'http://pathhere'; $content = get($url); print "This script checks if page has been changed.\n"; open(TMPFILE,"<previous_copy.html") or die; while (<TMPFILE>) { $prev_content .= $_; } close TMPFILE; if ($content eq $prev_content) { $mailer = Mail::Mailer->new(); $mailer->open({ from => 'fromemail@here', To => 'toemail@here', Subject => "test", }) or die "can not work: $!\n"; print "data\n"; $mailer->close(); } else { print "test\n"; } open(TMPFILE,">previous_copy.html") or die; print TMPFILE "$content"; close TMPFILE;
C:\Perl\bin>webCha2.pl This script checks if page has been changed. Died at C:/Perl/site/lib/Mail/Mailer.pm line 270.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(shockme) Re: Mail on NT
by shockme (Chaplain) on Apr 02, 2002 at 14:40 UTC | |
by Anonymous Monk on Apr 02, 2002 at 15:29 UTC | |
by Anonymous Monk on Apr 02, 2002 at 14:57 UTC | |
|
Re: Mail on NT
by simon.proctor (Vicar) on Apr 02, 2002 at 14:59 UTC | |
|
Re: Mail on NT
by strat (Canon) on Apr 02, 2002 at 15:30 UTC | |
|
Re: Mail on NT
by simonflk (Pilgrim) on Apr 02, 2002 at 14:49 UTC | |
|
Re: Mail on NT
by dws (Chancellor) on Apr 02, 2002 at 17:40 UTC |