I'm going to focus on a small part of your query:

We would like a solution that will let us send out HTML emails and then monitor who opens them etc.

There are two ways to monitor who reads a message.

First we have read receipts. These are useless as the majority of email clients are configured to ignore them (or don't implement RFC 2289 (which is not yet a standard) in the first place), and the majority of clients which aren't flash up a (very annoying) dialog box to ask the user if they want to send the receipt. Thus, the technique gives such inaccurate results as to be useless.

Second, we have webbugs. This involves sticking an external image reference in an HTML formatted email with a unique tracking ID in the query string of the URI. Since most email clients block external images by default, and since people do read mail offline, the results are (again) inaccurate. It gets worse though, unique tracking IDs are a favoured technique of Evil Spammers (TM), so spam blocking software looks for the presence of webbugs and pushes the score of messages in which it finds them that bit closer to 'spam' (not that using HTML formatting in the first place helps in this regard). This makes webbugs worse then useless for such tracking.

In a nutshell you can't get good results and you can't get bad results without annoying your readers - so forget about tracking.

Oh, and as an aside, if you want mailing list software, I suggest Mailman (even though it isn't Perl).


In reply to Tracking Email Views by dorward
in thread Bulk Mail System by existem

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.