diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index 4411b8a326a..97c6735221f 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -635,11 +635,11 @@ if ($object->fetch($id) >= 0) {
$obj = $db->fetch_object($resql);
print '
';
- print '| '.$obj->email.' | ';
- print ''.$obj->lastname.' | ';
- print ''.$obj->firstname.' | ';
+ print ''.img_picto('$obj->email', 'email', 'class="paddingright"').$obj->email.' | ';
+ print ''.$obj->lastname.' | ';
+ print ''.$obj->firstname.' | ';
print ''.$obj->other.' | ';
- print '';
+ print ' | ';
if (empty($obj->source_id) || empty($obj->source_type)) {
print empty($obj->source_url) ? '' : $obj->source_url; // For backward compatibility
} else {
|