[Vtigercrm-commits] [vtiger-commits] r6594 - /vtigercrm/trunk/modules/Webmails/DetailView.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Sun May 28 03:58:30 EDT 2006
Author: mmbrich
Date: Sun May 28 01:58:30 2006
New Revision: 6594
Log:
extra fields
Modified:
vtigercrm/trunk/modules/Webmails/DetailView.php
Modified: vtigercrm/trunk/modules/Webmails/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/DetailView.php (original)
+++ vtigercrm/trunk/modules/Webmails/DetailView.php Sun May 28 01:58:30 2006
@@ -23,11 +23,13 @@
echo '<table border="1" width="100%" cellpadding="0" cellspacing="0">';
echo '<tr><td width="10%">From:</td><td>'.$webmail->fromname.'</td></tr>';
echo '<tr><td width="10%">To:</td><td>'.implode(" ",$webmail->to).'</td></tr>';
+echo '<tr><td width="10%">Subject:</td><td>'.$webmail->subject.'</td></tr>';
+echo '<tr><td width="10%">Date:</td><td>'.$webmail->date.'</td></tr>';
echo '</table>';
echo '</td></tr>';
-echo '<tr><td align="center"><iframe src="index.php?module=Webmails&action=body&mailid='.$mailid.'&mailbox='.$mailbox.'" width="100%" height="450" frameborder="0">No Iframes supported</iframe></td></tr>';
+echo '<tr><td align="center"><iframe src="index.php?module=Webmails&action=body&mailid='.$mailid.'&mailbox='.$mailbox.'" width="100%" height="450" frameborder="0" style="border:1px solid gray">No Iframes supported</iframe></td></tr>';
echo "<tr><td><p style='font-weight:bold'>Email Attachments:</p></td></tr>";
foreach($webmail->attachments as $key=>$value) {
More information about the vtigercrm-commits
mailing list