Monks,
I'm searching a database to find certain record. If the record matches my terms, I send an email to that user. I'm using a loop to go through all of the records. I would like to update a single variable that I will later use to log every record that was sent an email. How can I update that variable within the loop?
When I run the script from the command line, I have a print line like this, that also updates the count. I stuff the count into a log after the loop is finished:
print "email sent to: $contact <$toemail><br>\n";
$count++
I'd like to also do something like:
$log = email sent to: $contact <$toemail><br>";
But it needs to be updated with all the emails sent, so I can make a single log entry, via separate routine, once the loop is finished. Make sense?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.