I have been pondering this problem myself in the last few days, have a similar problem in that it might be one email, or sometimes it might be a few thousand.
The basic approach which I am looking at, currently building, is to put the messages into a queue table in the DB, and then fire off a queue processor every minute (or whatever interval suits) to send them out. Am adding a config item for max messages per interval, so the queue processor can be throttled depending on the hosting arrangement. (current impl has its own box and smtp server, so that wasn't a problem before.)
Would be interested to hear what approach you come up with.