| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 45 | public function sendCreateMessage()  | 
            ||
| 46 |     { | 
            ||
| 47 |         $from    = Plugin::getParams('Core')->get('admin_email'); | 
            ||
| 48 | $macros = new Macros($this->_data);  | 
            ||
| 49 |         $message = $this->_params->get('msg_account_create_msg'); | 
            ||
| 50 | $message = $macros->text($message);  | 
            ||
| 51 |         $subject = $this->_params->get('msg_account_create_subject'); | 
            ||
| 52 | |||
| 53 | return $this->send($subject, $message, $this->_data->email, null, $from);  | 
            ||
| 54 | }  | 
            ||
| 55 | |||
| 66 |