17 lines
309 B
PHP
Executable file
17 lines
309 B
PHP
Executable file
<?php
|
|
class EmailAttachment extends AppModel {
|
|
|
|
var $name = 'EmailAttachment';
|
|
|
|
var $belongsTo = array(
|
|
'Email' => array('className' => 'Email',
|
|
'foreignKey' => 'email_id',
|
|
'counterCache' => true,
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
));
|
|
|
|
}
|
|
?>
|