pricecharts

track prices of consumer electronics
Log | Files | Refs | README

commit 2c131cebaeefb12fbfb3acbf67cca9bfde2cef42
parent 3e9b3657e319cde52804158668aed27d4dd40aa9
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Mon,  3 Nov 2014 21:53:40 -0700

product_scraper: no need for date in email subject

Diffstat:
Mproduct_scraper.pl | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/product_scraper.pl b/product_scraper.pl @@ -6,7 +6,6 @@ use warnings; use Email::Simple; use Email::Send; use HTML::Grabber; -use POSIX; use shared; @@ -144,12 +143,11 @@ $email .= "- ($_->[0]) $_->[1] $_->[2] $_->[3]\n" for (@new); $product_sth->finish(); $dbh->disconnect(); -my $date = strftime "%d/%m/%Y", localtime; my $e_mail = Email::Simple->create( header => [ From => "Santa Claus <sc\@np.com>", To => $cfg->{general}{email}, - Subject => "PriceChart product scrape $date", + Subject => "PriceChart product scrape, (" . @new . " new)", ], body => $email);