Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

This code sends me an email with the number of days until a significant event; in this case, the 2008 election. It could easily be adapted to send the number of days since an event (a sobriety date, for example, or the days since you started programming in Perl).

I run a cron job to send this email to myself every day.

use strict; use Net::SMTP; use Date::Format; use Date::Calc qw(Delta_Days Add_Delta_Days); my $smtp=Net::SMTP->new('mail.sample.com'); $smtp->mail('zeno@sample.com'); $smtp->recipient('zeno@sample.com'); my $msg = ""; $msg .= << 'HEADER'; Priority: Non-Urgent Importance: low sensitivity: Personal From: "Election Day" <zeno@sample.com> To: <zeno@sample.com> HEADER # Set Expiry Date 1 day in the future my $expiry_date = time2str("%a, %d %b %T %Y %z", time+86400); $msg .= "Expiry-Date: " . $expiry_date ."\n"; my ($now_yr, $now_mon, $now_day) = (localtime)[5, 4, 3]; $now_mon += 1; $now_yr += 1900; my $days_until = Delta_Days($now_yr, $now_mon, $now_day, 2008, 11, 04) +; $msg .= "subject: " . $days_until . " days til election\n\n"; $msg .= $days_until . " days til election\n\n"; $smtp->data($msg); $smtp->quit;

In reply to Email days until election by zeno

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-25 10:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found