diff --git a/phpgwapi/inc/class.send.inc.php b/phpgwapi/inc/class.send.inc.php index 721594f65f..330d942248 100644 --- a/phpgwapi/inc/class.send.inc.php +++ b/phpgwapi/inc/class.send.inc.php @@ -90,7 +90,7 @@ class send { } if ($phpgw_info["user"]["preferences"]["email"]["mail_server_type"] == "imap" && $phpgw_info["user"]["apps"]["email"] && is_object($phpgw->msg)){ $stream = $phpgw->msg->login("Sent"); - $phpgw->msg->append($stream, "Sent", $header, $body); + $phpgw->msg->append($stream, "Sent", $header, $body, "\\Seen"); $phpgw->msg->close($stream); } if (strlen($cc)>1) $to .= ",".$cc;