email()
7: function email() {
8: ob_start();
9: foreach ($this as $key => $value) {
10: if (!preg_match('/^_/', $key)) {
11: $$key = $value;
12: }
13: }
14: include DIR_VIEWS . 'notifier/' . $this->render . '.phtml';
15: $content = ob_get_contents();
16: ob_end_clean();
17: $headers = 'From: ' . $this->from;
18: return mail($this->recipients, $this->subject, $content, $headers);
19:
20: }
File: lib/support/ActionMailer.php, #line 7
