Skip to content

Instantly share code, notes, and snippets.

@joet3ch
Created September 17, 2010 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joet3ch/583664 to your computer and use it in GitHub Desktop.
Save joet3ch/583664 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
#
#Fetches a webpage and sends a copy via html email
#
# this is some very old stuff... used it to send my hockey team schedule to the players
#
use strict;
use MIME::Lite;
use LWP::Simple;
#specify webpage url
my $pageURL="http://www.inmansportsclub.com/cgi-bin/lgestat/league.cgi?a=league&a2=sche&a3=team&l=8599568189&t=882647";;
#fetch webpage
my $simplePage=get($pageURL);
# SendTo email id
my $email = 'me@joet3ch.com';
my $email2 = 'player@netscape.net';
my $email3 = 'player@aol.com';
my $email4 = 'player@gmail.com';
my $email5 = 'player@earthlink.net';
my $email6 = 'player@comcast.net';
# create a new MIME Lite based email
my $msg = MIME::Lite->new
(
Subject => "Black Magic Schedule",
From => 'player@joet3ch.com',
To => $email,
To => $email2,
To => $email3,
To => $email4,
To => $email5,
To => $email6,
To => $email7,
Type => 'text/html',
Data => $simplePage
);
$msg->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment