about to try and make email sending after adding enquiry faster

This commit is contained in:
Karl Cordes 2009-02-03 15:11:37 +11:00
parent 588e58bb5e
commit bf63a5abca
2 changed files with 8 additions and 2 deletions

View file

@ -88,14 +88,14 @@ foreach ($enquiries as $enquiry):
<td>
<?php echo $html->link($enquiry['Customer']['name'], array('controller'=> 'customers', 'action'=>'view', $enquiry['Customer']['id'])); ?>
</td>
<td>
<td class = "nowrap">
<?php echo $html->link($enquiry['Contact']['name'], array('controller'=> 'contacts', 'action'=>'view', $enquiry['Contact']['id'])); ?>
</td>
<td>
<? //BCC address to Con is hardcoded in here. ?>
<?php echo $html->link($enquiry['Contact']['email'], 'mailto:'.$enquiry['Contact']['email'].'?subject='.$enquiry['Enquiry']['title'].'&bcc=carpis@cmctechnologies.com.au'); ?>
</td>
<td>
<td class = "nowrap">
<?php echo $enquiry['Contact']['phone']; ?>
</td>
<td>

View file

@ -325,6 +325,12 @@ table.mer tr td.posted {
table.mer tr td.notposted {
background: #FFFFFF;
}
table.mer tr td.nowrap {
font-size: small;
text-align: left;
white-space: nowrap;
}
table.mer tr td.comments {
font-size: small;
text-align: left;