BUG 10110 Añr modulo de logs para envio de correos electronicos SOLVED

- According to the specifications.
- Was add the the list of emails.
enter the commit message for your changes. Lines starting
This commit is contained in:
Marco Antonio Nina
2012-11-28 12:50:02 -04:00
parent 1804224a12
commit 29d4cb3fa0
6 changed files with 617 additions and 0 deletions

View File

@@ -120,5 +120,13 @@ class AppMessage extends BaseAppMessage
return $this->getAppMsgUid();
}
}
public function updateStatus($msgUid, $msgStatus)
{
$message = AppMessagePeer::retrieveByPk( $msgUid );
$message->fromArray( $message, BasePeer::TYPE_FIELDNAME );
$message->setAppMsgStatus($msgStatus);
$message->save();
}
}