/**
  * Gets the historical journal for an object from the log database.
  * Objects will have VirtualAttributes available to lookup login, date, and action information from the journal object.
  * @param integer intId
  * @return EmailOutgoingQueue[]
  */
 public static function GetJournalForId($intId)
 {
     $objDatabase = EmailOutgoingQueue::GetDatabase()->JournalingDatabase;
     $objResult = $objDatabase->Query('SELECT * FROM email_outgoing_queue WHERE id = ' . $objDatabase->SqlVariable($intId) . ' ORDER BY __sys_date');
     return EmailOutgoingQueue::InstantiateDbResult($objResult);
 }