diff --git a/htdocs/comm/mailing/card.php b/htdocs/comm/mailing/card.php
index e54aeb1c8a5..a468e79e23a 100644
--- a/htdocs/comm/mailing/card.php
+++ b/htdocs/comm/mailing/card.php
@@ -818,7 +818,9 @@ else
print '';
// Status
- print '
| '.$langs->trans("Status").' | '.$object->getLibStatut(4).' |
';
+ print '| '.$langs->trans("Status").' | '.$object->getLibStatut(4);
+ if ($object->statut == 2) print ' ('.$object->countNbOfTargets('alreadysent').'/'.$object->nbemail.')';
+ print' |
';
// Nb of distinct emails
print '| ';
|