What framework are you normally using to interface to your database? The specific framework and language will heavily influence how you go about this. If you're a developer yourself perhaps you can put this together (though, you probably wouldn't be asking this question then!). For example, if you were using Python, Perl or Ruby, it would probably be a very straight forward task for a programmer to achieve something like this for you.
Is this for internal use (ie. site/server stats & alerts) or as a marketing/newsletter purpose for your customers? All of the major scripting languages have email libraries that will easily do the former. Do you need to completely automate the process? Then sounds again like a server-side script + cron job will be the way to go. Do you need fancy HTML emails, or is plain-text fine? (Again with the script + cron.)
If you need a desktop/end-user solution, OpenOffice's database app can (I think) connect to a MySQL database, and from there you could build a mail-merge system as Jesper suggests, using the other components of the OO suite. It would still be worth finding an OO expert to help you do this though.
The other route would be getting a developer (yourself, employee, freelancer) to write a Thunderbird or Outlook plugin that would interface a MySQL db, pull out the required info, and merging into your mail. Beware that if you do large bulk-emails like thus you may need to talk to your provider to avoid being flagged as a potential spammer.
Good luck!
UPDATE: Justyn, Googling for 'send multipart html email from php' gives a few interesting prospects, but the best and most up to date info is on Stackoverflow (for which this site, OnStartups, shares the same engine). If your developers need help on email and PHP, or other problems with implementing the email system, it will be the best place to go.
It should be relatively straight forward to code some PHP that will allow you to:
All the best!
I don't know how well Microsoft Office likes MySQL -- if Office can work with MySQL, then you can do this via Excel, Word and Word's Mail Merge functionality.