about to try and make email sending after adding enquiry faster
This commit is contained in:
parent
588e58bb5e
commit
bf63a5abca
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue