St. Valentine's day is approaching. You may not be thinking about it, but
she is. Don't be unprepared! Warm her up
before the chocolates and roses arrive. Let her know that you love her all year long, not just Feb 14
th. Just insert your own love lines and sweet words into this script and when ever you need more points with her, just "double click" and send you love.
#!/usr/bin/perl
# just put this bad boy on your desktop and
# double click as needed. :)
use strict;
use Mail::Sendmail;
# you
my $self = 'Monk';
my $email = 'me@workplace.com';
# her
my $chicks_name = 'Chick';
my $her_email = 'chick@mail.com';
my @cheese = (
"hey $chicks_name\n\n I hope everythings going well today.\n I just wa
+nted to drop you a line.\n\nLove always,\n\t$self",
"Baby,\n I just wanted you to know how much I love you. Youre great!\n
+\nLove,\n\t$self",
"I've been thinking about you all day. I can't wait to come home to yo
+u.\n talk to ya later,\n\t$self",
);
my @subjects = (
"hey babe...",
"a short message from your lover...",
"just wanted to say hi...",
"oh I love you...",
);
my %mail = (
To => $her_email,
From => $email,
Subject => $subjects[rand($#subjects)],
Message => $cheese[rand($#cheese)]
);
sendmail(%mail) || warn "$!";
Good luck! This code has been tested, but is still
untested.... use at your own risk :)
-Silent11