This commit is contained in:
botanic 2014-09-09 17:29:59 -07:00
parent 81ab2fb438
commit 95910f0a4f

View file

@ -122,6 +122,7 @@ class Mail_Handler{
$id_user = $recipient;
$recipient = NULL;
}
$db = new DBLayer($db);
$db->insert("email", array('Recipient' => $recipient, 'Subject' => $subject, 'Body' => $body, 'Status' => 'NEW', 'Attempts'=> 0, 'Sender' => $from,'UserId' => $id_user, 'MessageId' => 0, 'TicketId'=> $ticket_id));
}