If you have a site which sends out emails to the customer, and you want to save a copy of the mail, what is an effective strategy?
If you save it to a table in your database (eg create a table called Mail), it gets very large very quickly.
Some strategies I've seen are:
- Save it to the file system
- Run a scheduled task to clear old entries from the database - but then you land up not having a copy;
- Create a sepearate table for each time frame (one each year, or one each month)
What strategies have you used?