This module adds a field formatter for a no-more tables approach to field collections. This is heavily, heavily based on the work by Tim Plunkett in field_collection_table.
Message Digest is a plugin to the Message module which adds the ability to send email messages in a digest format every day or week, rather than on demand. This is useful for sites with too much activity for on demand messages to be useful, or with users who prefer to not get multiple emails a day.
Usage
This module provides two new notification plugins -- "digest_day" and "digest_week". Just use one of those as the $notifier_name for message_notify_send_message().
Doing so will prevent the message from sending an immediate notification, and instead will add it to the daily or weekly digest for that user which will be emailed on cron every day or week.
Extending
If you'd like to use a different interval than "day" or "week", doing so is as easy as creating a new plugin with a custom interval. Take a look at this module's "digest_day" or "digest_week" plugin (under plugins/notifer/digest_*) and you'll see that all it needs to do is override the getInterval() function with some new interval string that will be accepted by strtotime().