css
This commit is contained in:
parent
f4d60d0b70
commit
b9e08dafab
@ -981,9 +981,9 @@ if ($action == 'create') {
|
|||||||
print '<table class="border centpercent tableforfield">';
|
print '<table class="border centpercent tableforfield">';
|
||||||
|
|
||||||
// Number of distinct emails
|
// Number of distinct emails
|
||||||
print '<tr><td>';
|
print '<tr><td class="titlefield">';
|
||||||
print $langs->trans("TotalNbOfDistinctRecipients");
|
print $langs->trans("TotalNbOfDistinctRecipients");
|
||||||
print '</td><td colspan="3">';
|
print '</td><td>';
|
||||||
$nbemail = ($object->nbemail ? $object->nbemail : 0);
|
$nbemail = ($object->nbemail ? $object->nbemail : 0);
|
||||||
if (is_numeric($nbemail)) {
|
if (is_numeric($nbemail)) {
|
||||||
$text = '';
|
$text = '';
|
||||||
|
|||||||
@ -285,9 +285,7 @@ if ($object->fetch($id) >= 0) {
|
|||||||
|
|
||||||
print '<table class="border centpercent tableforfield">';
|
print '<table class="border centpercent tableforfield">';
|
||||||
|
|
||||||
//print '<tr><td class="titlefield">'.$langs->trans("MailTitle").'</td><td colspan="3">'.$object->title.'</td></tr>';
|
print '<tr><td class="titlefield">'.$langs->trans("MailFrom").'</td><td>';
|
||||||
|
|
||||||
print '<tr><td class="titlefield">'.$langs->trans("MailFrom").'</td><td colspan="3">';
|
|
||||||
$emailarray = CMailFile::getArrayAddress($object->email_from);
|
$emailarray = CMailFile::getArrayAddress($object->email_from);
|
||||||
foreach ($emailarray as $email => $name) {
|
foreach ($emailarray as $email => $name) {
|
||||||
if ($name && $name != $email) {
|
if ($name && $name != $email) {
|
||||||
@ -306,7 +304,7 @@ if ($object->fetch($id) >= 0) {
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Errors to
|
// Errors to
|
||||||
print '<tr><td>'.$langs->trans("MailErrorsTo").'</td><td colspan="3">';
|
print '<tr><td>'.$langs->trans("MailErrorsTo").'</td><td>';
|
||||||
$emailarray = CMailFile::getArrayAddress($object->email_errorsto);
|
$emailarray = CMailFile::getArrayAddress($object->email_errorsto);
|
||||||
foreach ($emailarray as $email => $name) {
|
foreach ($emailarray as $email => $name) {
|
||||||
if ($name != $email) {
|
if ($name != $email) {
|
||||||
@ -331,10 +329,10 @@ if ($object->fetch($id) >= 0) {
|
|||||||
|
|
||||||
print '<table class="border centpercent tableforfield">';
|
print '<table class="border centpercent tableforfield">';
|
||||||
|
|
||||||
// Nb of distinct emails
|
// Number of distinct emails
|
||||||
print '<tr><td>';
|
print '<tr><td class="titlefield">';
|
||||||
print $langs->trans("TotalNbOfDistinctRecipients");
|
print $langs->trans("TotalNbOfDistinctRecipients");
|
||||||
print '</td><td colspan="3">';
|
print '</td><td>';
|
||||||
$nbemail = ($object->nbemail ? $object->nbemail : 0);
|
$nbemail = ($object->nbemail ? $object->nbemail : 0);
|
||||||
if (is_numeric($nbemail)) {
|
if (is_numeric($nbemail)) {
|
||||||
$text = '';
|
$text = '';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user