Mailer.php
[Pman.Core] / Mailer.php
1 <?php
2
3 /**
4  *
5  *  code that used to be in Pman (sendTemplate / emailTemplate)
6  * 
7  *  template is in template directory subfolder 'mail'
8  *   
9  *  eg. use 'welcome' as template -> this will use templates/mail/welcome.txt
10  *  if you also have templates/mail/welcome.body.html - then that will be used as 
11  *     the html body
12  * 
13  *
14  *  usage:
15  *
16  *
17  *  $x= new Pman_Core_Mailer($opts)
18  *
19  *  $opts[
20        page => 
21        contents
22        template
23        replaceImages => true|false,
24        rcpts => array()   // override recipients..
25     ]
26  *
27  *  recipents is gathered from the resulting template
28  *   -- eg.
29  *    To: <a>,<b>,<c>
30  * 
31  * 
32  *  if the file     '
33  * 
34  * 
35  *  $x->asData(); // returns data needed for notify?? - notify should really
36  *                  // just use this to pass around later..
37  *
38  *  $x->send();
39  *
40  */
41
42 class Pman_Core_Mailer {
43     var $debug          = false;
44     var $page           = false; /* usually a html_flexyframework_page */
45     var $contents       = false; /* object or array */
46     var $template       = false; /* string */
47     var $replaceImages  = false; /* boolean */
48     var $rcpts   = false;
49     var $templateDir = false;
50     
51     var $images         = array(); // generated list of cid images for sending
52     
53     
54     function Pman_Core_Mailer($args) {
55         foreach($args as $k=>$v) {
56             // a bit trusting..
57             $this->$k =  $v;
58         }
59     }
60      
61     /**
62      * ---------------- Global Tools ---------------   
63      */
64     
65     function toData()
66     {
67     
68         $templateFile = $this->template;
69         $args = $this->contents;
70         
71         $content  = clone($this->page);
72         
73         foreach((array)$args as $k=>$v) {
74             $content->$k = $v;
75         }
76         
77         $content->msgid = empty($content->msgid ) ? md5(time() . rand()) : $content->msgid ;
78         
79         $ff = HTML_FlexyFramework::get();
80         $http_host = isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : 'pman.HTTP_HOST.not.set';
81         if (isset($ff->Pman['HTTP_HOST'])) {
82             $http_host  = $ff->Pman['HTTP_HOST'];
83         }
84         
85         
86         $content->HTTP_HOST = $http_host;
87         
88         
89         
90         // this should be done by having multiple template sources...!!!
91         
92         require_once 'HTML/Template/Flexy.php';
93         
94         $tmp_opts = array();
95         if (!empty($this->templateDir)) {
96             $tmp_opts['templateDir'] = $this->templateDir;
97         }
98         
99         
100         $htmlbody = false;
101         $htmltemplate = new HTML_Template_Flexy( $tmp_opts );
102
103         if (is_string($htmltemplate->resolvePath('mail/'.$templateFile.'.body.html')) ) {
104             // then we have a multi-part email...
105             
106             
107             $htmltemplate->compile('mail/'. $templateFile.'.body.html');
108             $htmlbody =  $htmltemplate->bufferedOutputObject($content);
109             
110             // for the html body, we may want to convert the attachments to images.
111 //            var_dump($htmlbody);exit;
112             $htmlbody = $this->htmlbodytoCID($htmlbody);
113             
114               
115         }
116         $tmp_opts['nonHTML'] = true;
117         // $tmp_opts['force'] = true;
118         $template = new HTML_Template_Flexy(  $tmp_opts );
119         
120         $template->compile('mail/'. $templateFile.'.txt');
121         
122         /* use variables from this object to ouput data. */
123         $mailtext = $template->bufferedOutputObject($content);
124         //print_r($mailtext);exit;
125        
126         
127         
128         //echo "<PRE>";print_R($mailtext);
129         
130         /* With the output try and send an email, using a few tricks in Mail_MimeDecode. */
131         require_once 'Mail/mimeDecode.php';
132         require_once 'Mail.php';
133         
134         $decoder = new Mail_mimeDecode($mailtext);
135         $parts = $decoder->getSendArray();
136         if (PEAR::isError($parts)) {
137             return $parts;
138             //echo "PROBLEM: {$parts->message}";
139             //exit;
140         } 
141         
142         
143         
144         
145         $parts[1]['Message-Id'] = '<' .   $content->msgid   .
146                                      '@' . $content->HTTP_HOST .'>';
147         
148         
149         
150         
151         if ($htmlbody !== false) {
152             require_once 'Mail/mime.php';
153             $mime = new Mail_mime(array('eol' => "\n",
154                                     'html_charset' => 'UTF-8',
155                                     'text_charset' => 'UTF-8',
156                                     'head_charset' => 'UTF-8'
157                 ));
158             
159             $mime->setTXTBody($parts[2]);
160             $mime->setHTMLBody($htmlbody);
161 //            var_dump($mime);exit;
162             foreach($this->images as $cid=>$cdata) { 
163             
164                 $mime->addHTMLImage(
165                     $cdata['file'],
166                      $cdata['mimetype'],
167                      $cid.'.'.$cdata['ext'],
168                     true,
169                     $cdata['contentid']
170                 );
171             }
172             $parts[2] = $mime->get();
173             $parts[1] = $mime->headers($parts[1]);
174         
175         }
176         
177        // list($recipents,$headers,$body) = $parts;
178         return array(
179             'recipents' => $parts[0],
180             'headers' => $parts[1],
181             'body' => $parts[2]
182         );
183     }
184     function send()
185     {
186         
187         $email = $this->toData();
188         if (is_a($email, 'PEAR_Error')) {
189             return $email;
190         }
191         if ($this->debug) {
192             echo '<PRE>';echo htmlspecialchars(print_r($email,true));
193         }
194         ///$recipents = array($this->email);
195         $mailOptions = PEAR::getStaticProperty('Mail','options');
196         //print_R($mailOptions);exit;
197         $mail = Mail::factory("SMTP",$mailOptions);
198         $headers['Date'] = date('r'); 
199         if (PEAR::isError($mail)) {
200             return $mail;
201         } 
202         $rcpts = $this->rcpts == false ? $email['recipents'] : $this->rcpts;
203         
204         if (!empty($this->contents['bcc']) && is_array($this->contents['bcc'])) {
205             $rcpts =array_merge(is_array($rcpts) ? $rcpts : array($rcpts), $this->contents['bcc']);
206         }
207         
208         $oe = error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
209         $ret = $mail->send($rcpts,$email['headers'],$email['body']);
210         error_reporting($oe);
211        
212         return $ret;
213     }
214     
215     function htmlbodytoCID($html)
216     {
217         $dom = new DOMDocument;
218         $dom->loadHTML($html);
219         $imgs= $dom->getElementsByTagName('img');
220         
221         foreach ($imgs as $i=>$img) {
222             $url  = $img->getAttribute('src');
223             $conv = $this->fetchImage($url);
224             $this->images[$conv['contentid']] = $conv;
225             
226             $img->setAttribute('src', 'cid:' . $conv['contentid']);
227             
228             
229         }
230         return $dom->saveHTML();
231         
232         
233         
234     }
235     function fetchImage($url)
236     {
237         
238         if ($url[0] == '/') {
239             $file = $this->page->rootDir . $url;
240             require_once 'File/MimeType.php';
241             $m  = new File_MimeType();
242             $mt = $m->fromFilename($file);
243             $ext = $m->toExt($mt); 
244             
245             return array(
246                     'mimetype' => $mt,
247                    'ext' => $ext,
248                    'contentid' => md5($file),
249                    'file' => $file
250             );
251             
252             
253             
254         }
255         
256         //print_R($url); exit;
257         
258         
259         if (preg_match('#^file:///#', $url)) {
260             $file = preg_replace('#^file://#', '', $url);
261             require_once 'File/MimeType.php';
262             $m  = new File_MimeType();
263             $mt = $m->fromFilename($file);
264             $ext = $m->toExt($mt); 
265             
266             return array(
267                     'mimetype' => $mt,
268                    'ext' => $ext,
269                    'contentid' => md5($file),
270                    'file' => $file
271             );
272             
273         }
274         
275         // CACHE???
276         // 2 files --- the info file.. and the actual file...
277         // add user
278         $cache = ini_get('session.save_path').'/Pman_Core_Mailer/' . md5($url);
279         if (file_exists($cache) and filemtime($cache) > strtotime('NOW - 1 WEEK')) {
280             $ret =  json_decode($cache);
281             $ret['file'] = $cache . '.data';
282             return $ret;
283         }
284         if (!file_exists(dirname($cache))) {
285             mkdir(dirname($cache),0666, true);
286         }
287         
288         require_once 'HTTP/Request.php';
289         $a = new HTTP_Request($url);
290         $a->sendRequest();
291         file_put_contents($cache .'.data', $a->getResponseBody());
292         
293         $mt = $a->getResponseHeader('Content-Type');
294         
295         require_once 'File/MimeType.php';
296         $m  = new File_MimeType();
297         $ext = $m->toExt($mt);
298         
299         $ret = array(
300             'mimetype' => $mt,
301             'ext' => $ext,
302             'contentid' => md5($url)
303             
304         );
305         
306         file_put_contents($cache, json_encode($ret));
307         $ret['file'] = $cache . '.data';
308         return $ret;
309     }  
310     
311     
312     
313 }