]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Emails/Email.php
Release 6.4.1
[Github/sugarcrm.git] / modules / Emails / Email.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. All Rights
42  * Reserved. Contributor(s): ______________________________________..
43  *********************************************************************************/
44 require_once('include/SugarPHPMailer.php');
45 require_once('include/Pear/HTML_Safe/Safe.php');
46 require_once 'include/upload_file.php';
47
48 class Email extends SugarBean {
49         /* SugarBean schema */
50         var $id;
51         var $date_entered;
52         var $date_modified;
53         var $assigned_user_id;
54         var $assigned_user_name;
55         var $modified_user_id;
56         var $created_by;
57         var $deleted;
58         var $from_addr;
59         var $reply_to_addr;
60         var $to_addrs;
61     var $cc_addrs;
62     var $bcc_addrs;
63         var $message_id;
64
65         /* Bean Attributes */
66         var $name;
67     var $type = 'archived';
68     var $date_sent;
69         var $status;
70         var $intent;
71         var $mailbox_id;
72         var $from_name;
73
74         var $reply_to_status;
75         var $reply_to_name;
76         var $reply_to_email;
77         var $description;
78         var $description_html;
79         var $raw_source;
80         var $parent_id;
81         var $parent_type;
82
83         /* link attributes */
84         var $parent_name;
85
86
87         /* legacy */
88         var $date_start; // legacy
89         var $time_start; // legacy
90         var $from_addr_name;
91         var $to_addrs_arr;
92     var $cc_addrs_arr;
93     var $bcc_addrs_arr;
94         var $to_addrs_ids;
95         var $to_addrs_names;
96         var $to_addrs_emails;
97         var $cc_addrs_ids;
98         var $cc_addrs_names;
99         var $cc_addrs_emails;
100         var $bcc_addrs_ids;
101         var $bcc_addrs_names;
102         var $bcc_addrs_emails;
103         var $contact_id;
104         var $contact_name;
105
106         /* Archive Email attrs */
107         var $duration_hours;
108
109
110
111         var $new_schema = true;
112         var $table_name = 'emails';
113         var $module_dir = 'Emails';
114     var $module_name = 'Emails';
115         var $object_name = 'Email';
116         var $db;
117
118         /* private attributes */
119         var $rolloverStyle              = "<style>div#rollover {position: relative;float: left;margin: none;text-decoration: none;}div#rollover a:hover {padding: 0;text-decoration: none;}div#rollover a span {display: none;}div#rollover a:hover span {text-decoration: none;display: block;width: 250px;margin-top: 5px;margin-left: 5px;position: absolute;padding: 10px;color: #333;      border: 1px solid #ccc; background-color: #fff; font-size: 12px;z-index: 1000;}</style>\n";
120         var $cachePath;
121         var $cacheFile                  = 'robin.cache.php';
122         var $replyDelimiter     = "> ";
123         var $emailDescription;
124         var $emailDescriptionHTML;
125         var $emailRawSource;
126         var $link_action;
127         var $emailAddress;
128         var $attachments = array();
129
130         /* to support Email 2.0 */
131         var $isDuplicate;
132         var $uid;
133         var $to;
134         var $flagged;
135         var $answered;
136         var $seen;
137         var $draft;
138         var $relationshipMap = array(
139                 'Contacts'      => 'emails_contacts_rel',
140                 'Accounts'      => 'emails_accounts_rel',
141                 'Leads'         => 'emails_leads_rel',
142                 'Users'         => 'emails_users_rel',
143                 'Prospects'     => 'emails_prospects_rel',
144         );
145
146         /* public */
147         var $et;                // EmailUI object
148         // prefix to use when importing inlinge images in emails
149         public $imagePrefix;
150
151         /**
152          * sole constructor
153          */
154         function Email()
155         {
156             global $current_user;
157             $this->cachePath = sugar_cached('modules/Emails');
158                 parent::SugarBean();
159
160                 $this->safe = new HTML_Safe();
161                 $this->safe->whiteProtocols[] = "cid";
162                 $this->safe->clear();
163                 $this->emailAddress = new SugarEmailAddress();
164
165                 $this->imagePrefix = rtrim($GLOBALS['sugar_config']['site_url'], "/")."/cache/images/";
166         }
167
168         function email2init() {
169                 require_once('modules/Emails/EmailUI.php');
170                 $this->et = new EmailUI();
171         }
172         function bean_implements($interface){
173                 switch($interface){
174                         case 'ACL': return true;
175                         default: return false;
176                 }
177
178         }
179
180         /**
181          * Presaves one attachment for new email 2.0 spec
182          * DOES NOT CREATE A NOTE
183          * @return string ID of note associated with the attachment
184          */
185         public function email2saveAttachment()
186         {
187         $email_uploads = "modules/Emails/{$GLOBALS['current_user']->id}";
188             $upload = new UploadFile('email_attachment');
189                 if(!$upload->confirm_upload()) {
190                     $err = $upload->get_upload_error();
191                     if($err) {
192                         $GLOBALS['log']->error("Email Attachment could not be attached due to error: $err");
193                     }
194                     return array();
195                 }
196
197                 $guid = create_guid();
198                 $fileName = $upload->create_stored_filename();
199         $GLOBALS['log']->debug("Email Attachment [$fileName]");
200         if($upload->final_move($guid)) {
201                 copy("upload://$guid", sugar_cached("$email_uploads/$guid"));
202                         return array(
203                                         'guid' => $guid,
204                                         'name' => $GLOBALS['db']->quote($fileName),
205                                         'nameForDisplay' => $fileName
206                                 );
207         } else {
208                         $GLOBALS['log']->debug("Email Attachment [$fileName] could not be moved to upload dir");
209                         return array();
210         }
211         }
212
213         function safeAttachmentName($filename) {
214                 global $sugar_config;
215                 $badExtension = false;
216                 //get position of last "." in file name
217                 $file_ext_beg = strrpos($filename, ".");
218                 $file_ext = "";
219
220                 //get file extension
221                 if($file_ext_beg !== false) {
222                         $file_ext = substr($filename, $file_ext_beg + 1);
223                 }
224
225                 //check to see if this is a file with extension located in "badext"
226                 foreach($sugar_config['upload_badext'] as $badExt) {
227                         if(strtolower($file_ext) == strtolower($badExt)) {
228                                 //if found, then append with .txt and break out of lookup
229                                 $filename = $filename . ".txt";
230                                 $badExtension = true;
231                                 break; // no need to look for more
232                         } // if
233                 } // foreach
234
235                 return $badExtension;
236         } // fn
237
238         /**
239          * takes output from email 2.0 to/cc/bcc fields and returns appropriate arrays for usage by PHPMailer
240          * @param string addresses
241          * @return array
242          */
243         function email2ParseAddresses($addresses) {
244                 $addresses = from_html($addresses);
245         $addresses = $this->et->unifyEmailString($addresses);
246
247                 $pattern = '/@.*,/U';
248                 preg_match_all($pattern, $addresses, $matchs);
249                 if (!empty($matchs[0])){
250                         $total = $matchs[0];
251                         foreach ($total as $match) {
252                                 $convertedPattern = str_replace(',', '::;::', $match);
253                                 $addresses = str_replace($match, $convertedPattern, $addresses);
254                         } //foreach
255                 }
256
257                 $exAddr = explode("::;::", $addresses);
258
259                 $ret = array();
260                 $clean = array("<", ">");
261                 $dirty = array("&lt;", "&gt;");
262
263                 foreach($exAddr as $addr) {
264                         $name = '';
265
266                         $addr = str_replace($dirty, $clean, $addr);
267
268                         if((strpos($addr, "<") === false) && (strpos($addr, ">") === false)) {
269                                 $address = $addr;
270                         } else {
271                                 $address = substr($addr, strpos($addr, "<") + 1, strpos($addr, ">") - 1 - strpos($addr, "<"));
272                                 $name = substr($addr, 0, strpos($addr, "<"));
273                         }
274
275                         $addrTemp = array();
276                         $addrTemp['email'] = trim($address);
277                         $addrTemp['display'] = trim($name);
278                         $ret[] = $addrTemp;
279                 }
280
281                 return $ret;
282         }
283
284         /**
285          * takes output from email 2.0 to/cc/bcc fields and returns appropriate arrays for usage by PHPMailer
286          * @param string addresses
287          * @return array
288          */
289         function email2ParseAddressesForAddressesOnly($addresses) {
290                 $addresses = from_html($addresses);
291                 $pattern = '/@.*,/U';
292                 preg_match_all($pattern, $addresses, $matchs);
293                 if (!empty($matchs[0])){
294                         $total = $matchs[0];
295                         foreach ($total as $match) {
296                                 $convertedPattern = str_replace(',', '::;::', $match);
297                                 $addresses = str_replace($match, $convertedPattern, $addresses);
298                         } //foreach
299                 }
300
301                 $exAddr = explode("::;::", $addresses);
302
303                 $ret = array();
304                 $clean = array("<", ">");
305                 $dirty = array("&lt;", "&gt;");
306
307                 foreach($exAddr as $addr) {
308                         $name = '';
309
310                         $addr = str_replace($dirty, $clean, $addr);
311
312                         if(strpos($addr, "<") && strpos($addr, ">")) {
313                                 $address = substr($addr, strpos($addr, "<") + 1, strpos($addr, ">") - 1 - strpos($addr, "<"));
314                         } else {
315                                 $address = $addr;
316                         }
317
318                         $ret[] = trim($address);
319                 }
320
321                 return $ret;
322         }
323
324         /**
325          * Determines MIME-type encoding as possible.
326          * @param string $fileLocation relative path to file
327          * @return string MIME-type
328          */
329         function email2GetMime($fileLocation) {
330             if(!is_readable($fileLocation)) {
331                 return 'application/octet-stream';
332             }
333                 if(function_exists('mime_content_type')) {
334                         $mime = mime_content_type($fileLocation);
335                 } elseif(function_exists('ext2mime')) {
336                         $mime = ext2mime($fileLocation);
337                 } else {
338                         $mime = 'application/octet-stream';
339                 }
340                 return $mime;
341         }
342
343
344         function sendEmailTest($mailserver_url, $port, $ssltls, $smtp_auth_req, $smtp_username, $smtppassword, $fromaddress, $toaddress, $mail_sendtype = 'smtp', $fromname = '') {
345                 global $current_user,$app_strings;
346                 $mod_strings = return_module_language($GLOBALS['current_language'], 'Emails'); //Called from EmailMan as well.
347             $mail = new SugarPHPMailer();
348                 $mail->Mailer = strtolower($mail_sendtype);
349                 if($mail->Mailer == 'smtp')
350                 {
351                 $mail->Host = $mailserver_url;
352                 $mail->Port = $port;
353                 if (isset($ssltls) && !empty($ssltls)) {
354                         $mail->protocol = "ssl://";
355                 if ($ssltls == 1) {
356                     $mail->SMTPSecure = 'ssl';
357                 } // if
358                 if ($ssltls == 2) {
359                     $mail->SMTPSecure = 'tls';
360                 } // if
361                 } else {
362                         $mail->protocol = "tcp://";
363                 }
364                 if ($smtp_auth_req) {
365                         $mail->SMTPAuth = TRUE;
366                         $mail->Username = $smtp_username;
367                         $mail->Password = $smtppassword;
368                 }
369                 }
370                 else
371                     $mail->Mailer = 'sendmail';
372
373                 $mail->Subject = from_html($mod_strings['LBL_TEST_EMAIL_SUBJECT']);
374                 $mail->From = $fromaddress;
375
376         if ($fromname != '') {
377             $mail->FromName = html_entity_decode($fromname,ENT_QUOTES);
378         } else {
379             $mail->FromName = $current_user->name;
380         }
381
382         $mail->Sender = $mail->From;
383                 $mail->AddAddress($toaddress);
384                 $mail->Body = $mod_strings['LBL_TEST_EMAIL_BODY'];
385
386                 $return = array();
387
388                 if(!$mail->Send()) {
389                 ob_clean();
390                 $return['status'] = false;
391                 $return['errorMessage'] = $app_strings['LBL_EMAIL_ERROR_PREPEND']. $mail->ErrorInfo;
392                 return $return;
393                 } // if
394                 $return['status'] = true;
395         return $return;
396         } // fn
397
398         function decodeDuringSend($htmlData) {
399             $htmlData = str_replace("sugarLessThan", "&lt;", $htmlData);
400             $htmlData = str_replace("sugarGreaterThan", "&gt;", $htmlData);
401                 return $htmlData;
402         }
403
404         /**
405          * Returns true or false if this email is a draft.
406          *
407          * @param array $request
408          * @return bool True indicates this email is a draft.
409          */
410         function isDraftEmail($request)
411         {
412             return ( isset($request['saveDraft']) || ($this->type == 'draft' && $this->status == 'draft') );
413         }
414
415         /**
416          * Sends Email for Email 2.0
417          */
418         function email2Send($request) {
419                 global $mod_strings;
420                 global $app_strings;
421                 global $current_user;
422                 global $sugar_config;
423                 global $locale;
424                 global $timedate;
425                 global $beanList;
426                 global $beanFiles;
427         $OBCharset = $locale->getPrecedentPreference('default_email_charset');
428
429                 /**********************************************************************
430                  * Sugar Email PREP
431                  */
432                 /* preset GUID */
433
434                 $orignialId = "";
435                 if(!empty($this->id)) {
436                         $orignialId =   $this->id;
437                 } // if
438
439                 if(empty($this->id)) {
440                         $this->id = create_guid();
441                         $this->new_with_id = true;
442                 }
443
444                 /* satisfy basic HTML email requirements */
445                 $this->name = $request['sendSubject'];
446                 $this->description_html = '&lt;html&gt;&lt;body&gt;'.$request['sendDescription'].'&lt;/body&gt;&lt;/html&gt;';
447
448                 /**********************************************************************
449                  * PHPMAILER PREP
450                  */
451                 $mail = new SugarPHPMailer();
452                 $mail = $this->setMailer($mail, '', $_REQUEST['fromAccount']);
453                 if (empty($mail->Host) && !$this->isDraftEmail($request))
454                 {
455             $this->status = 'send_error';
456
457             if ($mail->oe->type == 'system')
458                 echo($app_strings['LBL_EMAIL_ERROR_PREPEND']. $app_strings['LBL_EMAIL_INVALID_SYSTEM_OUTBOUND']);
459              else
460                 echo($app_strings['LBL_EMAIL_ERROR_PREPEND']. $app_strings['LBL_EMAIL_INVALID_PERSONAL_OUTBOUND']);
461
462             return false;
463                 }
464
465                 $subject = $this->name;
466                 $mail->Subject = from_html($this->name);
467
468                 // work-around legacy code in SugarPHPMailer
469                 if($_REQUEST['setEditor'] == 1) {
470                         $_REQUEST['description_html'] = $_REQUEST['sendDescription'];
471                         $this->description_html = $_REQUEST['description_html'];
472                 } else {
473                         $this->description_html = '';
474                         $this->description = $_REQUEST['sendDescription'];
475                 }
476                 // end work-around
477
478                 if ( $this->isDraftEmail($request) )
479                 {
480                         if($this->type != 'draft' && $this->status != 'draft') {
481                         $this->id = create_guid();
482                         $this->new_with_id = true;
483                         $this->date_entered = "";
484                         } // if
485                         $q1 = "update emails_email_addr_rel set deleted = 1 WHERE email_id = '{$this->id}'";
486                         $r1 = $this->db->query($q1);
487                 } // if
488
489                 if (isset($request['saveDraft'])) {
490                         $this->type = 'draft';
491                         $this->status = 'draft';
492                         $forceSave = true;
493                 } else {
494                         /* Apply Email Templates */
495                         // do not parse email templates if the email is being saved as draft....
496                     $toAddresses = $this->email2ParseAddresses($_REQUEST['sendTo']);
497                 $sea = new SugarEmailAddress();
498                 $object_arr = array();
499
500                         if( isset($_REQUEST['parent_type']) && !empty($_REQUEST['parent_type']) &&
501                                 isset($_REQUEST['parent_id']) && !empty($_REQUEST['parent_id']) &&
502                                 ($_REQUEST['parent_type'] == 'Accounts' ||
503                                 $_REQUEST['parent_type'] == 'Contacts' ||
504                                 $_REQUEST['parent_type'] == 'Leads' ||
505                                 $_REQUEST['parent_type'] == 'Users' ||
506                                 $_REQUEST['parent_type'] == 'Prospects')) {
507                                         if(isset($beanList[$_REQUEST['parent_type']]) && !empty($beanList[$_REQUEST['parent_type']])) {
508                                                 $className = $beanList[$_REQUEST['parent_type']];
509                                                 if(isset($beanFiles[$className]) && !empty($beanFiles[$className])) {
510                                                         if(!class_exists($className)) {
511                                                                 require_once($beanFiles[$className]);
512                                                         }
513                                                         $bean = new $className();
514                                                         $bean->retrieve($_REQUEST['parent_id']);
515                                         $object_arr[$bean->module_dir] = $bean->id;
516                                                 } // if
517                                         } // if
518                         }
519                         foreach($toAddresses as $addrMeta) {
520                                 $addr = $addrMeta['email'];
521                                 $beans = $sea->getBeansByEmailAddress($addr);
522                                 foreach($beans as $bean) {
523                                         if (!isset($object_arr[$bean->module_dir])) {
524                                                 $object_arr[$bean->module_dir] = $bean->id;
525                                         }
526                                 }
527                         }
528
529                 /* template parsing */
530                 if (empty($object_arr)) {
531                   $object_arr= array('Contacts' => '123');
532                 }
533                 $object_arr['Users'] = $current_user->id;
534                 $this->description_html = EmailTemplate::parse_template($this->description_html, $object_arr);
535                 $this->name = EmailTemplate::parse_template($this->name, $object_arr);
536                 $this->description = EmailTemplate::parse_template($this->description, $object_arr);
537                 $this->description = html_entity_decode($this->description,ENT_COMPAT,'UTF-8');
538                         if($this->type != 'draft' && $this->status != 'draft') {
539                         $this->id = create_guid();
540                         $this->date_entered = "";
541                         $this->new_with_id = true;
542                         $this->type = 'out';
543                         $this->status = 'sent';
544                         }
545         }
546
547         if(isset($_REQUEST['parent_type']) && empty($_REQUEST['parent_type']) &&
548                         isset($_REQUEST['parent_id']) && empty($_REQUEST['parent_id']) ) {
549                                 $this->parent_id = "";
550                                 $this->parent_type = "";
551                 } // if
552
553
554         $mail->Subject = $this->name;
555         $mail = $this->handleBody($mail);
556         $mail->Subject = $this->name;
557         $this->description_html = from_html($this->description_html);
558         $this->description_html = $this->decodeDuringSend($this->description_html);
559                 $this->description = $this->decodeDuringSend($this->description);
560
561                 /* from account */
562                 $replyToAddress = $current_user->emailAddress->getReplyToAddress($current_user);
563                 $replyToName = "";
564                 if(empty($request['fromAccount'])) {
565                         $defaults = $current_user->getPreferredEmail();
566                         $mail->From = $defaults['email'];
567                         $mail->FromName = $defaults['name'];
568                         $replyToName = $mail->FromName;
569                         //$replyToAddress = $current_user->emailAddress->getReplyToAddress($current_user);
570                 } else {
571                         // passed -> user -> system default
572                         $ie = new InboundEmail();
573                         $ie->retrieve($request['fromAccount']);
574                         $storedOptions = unserialize(base64_decode($ie->stored_options));
575                         $fromName = "";
576                         $fromAddress = "";
577                         $replyToName = "";
578                         //$replyToAddress = "";
579                         if (!empty($storedOptions)) {
580                                 $fromAddress = $storedOptions['from_addr'];
581                                 $fromName = from_html($storedOptions['from_name']);
582                                 $replyToAddress = (isset($storedOptions['reply_to_addr']) ? $storedOptions['reply_to_addr'] : "");
583                                 $replyToName = (isset($storedOptions['reply_to_name']) ? from_html($storedOptions['reply_to_name']) : "");
584                         } // if
585                         $defaults = $current_user->getPreferredEmail();
586                         // Personal Account doesn't have reply To Name and Reply To Address. So add those columns on UI
587                         // After adding remove below code
588
589                         // code to remove
590                         if ($ie->is_personal)
591                         {
592                                 if (empty($replyToAddress))
593                                 {
594                                         $replyToAddress = $current_user->emailAddress->getReplyToAddress($current_user);
595                                 } // if
596                                 if (empty($replyToName))
597                                 {
598                                         $replyToName = $defaults['name'];
599                                 } // if
600                                 //Personal accounts can have a reply_address, which should
601                                 //overwrite the users set default.
602                                 if( !empty($storedOptions['reply_to_addr']) )
603                                         $replyToAddress = $storedOptions['reply_to_addr'];
604
605                         }
606                         // end of code to remove
607                         $mail->From = (!empty($fromAddress)) ? $fromAddress : $defaults['email'];
608                         $mail->FromName = (!empty($fromName)) ? $fromName : $defaults['name'];
609                         $replyToName = (!empty($replyToName)) ? $replyToName : $mail->FromName;
610                 }
611
612                 $mail->Sender = $mail->From; /* set Return-Path field in header to reduce spam score in emails sent via Sugar's Email module */
613
614                 if (!empty($replyToAddress)) {
615                         $mail->AddReplyTo($replyToAddress,$locale->translateCharsetMIME(trim( $replyToName), 'UTF-8', $OBCharset));
616                 } else {
617                         $mail->AddReplyTo($mail->From,$locale->translateCharsetMIME(trim( $mail->FromName), 'UTF-8', $OBCharset));
618                 } // else
619         $emailAddressCollection = array(); // used in linking to beans below
620                 // handle to/cc/bcc
621                 foreach($this->email2ParseAddresses($request['sendTo']) as $addr_arr) {
622                         if(empty($addr_arr['email'])) continue;
623
624                         if(empty($addr_arr['display'])) {
625                                 $mail->AddAddress($addr_arr['email'], "");
626                         } else {
627                                 $mail->AddAddress($addr_arr['email'],$locale->translateCharsetMIME(trim( $addr_arr['display']), 'UTF-8', $OBCharset));
628                         }
629                         $emailAddressCollection[] = $addr_arr['email'];
630                 }
631                 foreach($this->email2ParseAddresses($request['sendCc']) as $addr_arr) {
632                         if(empty($addr_arr['email'])) continue;
633
634                         if(empty($addr_arr['display'])) {
635                                 $mail->AddCC($addr_arr['email'], "");
636                         } else {
637                                 $mail->AddCC($addr_arr['email'],$locale->translateCharsetMIME(trim( $addr_arr['display']), 'UTF-8', $OBCharset));
638                         }
639                         $emailAddressCollection[] = $addr_arr['email'];
640                 }
641
642                 foreach($this->email2ParseAddresses($request['sendBcc']) as $addr_arr) {
643                         if(empty($addr_arr['email'])) continue;
644
645                         if(empty($addr_arr['display'])) {
646                                 $mail->AddBCC($addr_arr['email'], "");
647                         } else {
648                                 $mail->AddBCC($addr_arr['email'],$locale->translateCharsetMIME(trim( $addr_arr['display']), 'UTF-8', $OBCharset));
649                         }
650                         $emailAddressCollection[] = $addr_arr['email'];
651                 }
652
653
654                 /* parse remove attachments array */
655                 $removeAttachments = array();
656                 if(!empty($request['templateAttachmentsRemove'])) {
657                         $exRemove = explode("::", $request['templateAttachmentsRemove']);
658
659                         foreach($exRemove as $file) {
660                                 $removeAttachments = substr($file, 0, 36);
661                         }
662                 }
663
664                 /* handle attachments */
665                 if(!empty($request['attachments'])) {
666                         $exAttachments = explode("::", $request['attachments']);
667
668                         foreach($exAttachments as $file) {
669                                 $file = trim(from_html($file));
670                                 $file = str_replace("\\", "", $file);
671                                 if(!empty($file)) {
672                                         //$fileLocation = $this->et->userCacheDir."/{$file}";
673                                         $fileGUID = substr($file, 0, 36);
674                                         $fileLocation = $this->et->userCacheDir."/{$fileGUID}";
675                                         $filename = substr($file, 36, strlen($file)); // strip GUID     for PHPMailer class to name outbound file
676
677                                         $mail->AddAttachment($fileLocation,$filename, 'base64', $this->email2GetMime($fileLocation));
678                                         //$mail->AddAttachment($fileLocation, $filename, 'base64');
679
680                                         // only save attachments if we're archiving or drafting
681                                         if((($this->type == 'draft') && !empty($this->id)) || (isset($request['saveToSugar']) && $request['saveToSugar'] == 1)) {
682                                                 $note = new Note();
683                                                 $note->id = create_guid();
684                                                 $note->new_with_id = true; // duplicating the note with files
685                                                 $note->parent_id = $this->id;
686                                                 $note->parent_type = $this->module_dir;
687                                                 $note->name = $filename;
688                                                 $note->filename = $filename;
689                                                 $note->file_mime_type = $this->email2GetMime($fileLocation);
690                         $dest = "upload://{$note->id}";
691                                                 if(!copy($fileLocation, $dest)) {
692                                                         $GLOBALS['log']->debug("EMAIL 2.0: could not copy attachment file to $fileLocation => $dest");
693                                                 }
694
695                                                 $note->save();
696                                         }
697                                 }
698                         }
699                 }
700
701                 /* handle sugar documents */
702                 if(!empty($request['documents'])) {
703                         $exDocs = explode("::", $request['documents']);
704
705                         foreach($exDocs as $docId) {
706                                 $docId = trim($docId);
707                                 if(!empty($docId)) {
708                                         $doc = new Document();
709                                         $docRev = new DocumentRevision();
710                                         $doc->retrieve($docId);
711                                         $docRev->retrieve($doc->document_revision_id);
712
713                                         $filename = $docRev->filename;
714                                         $fileLocation = "upload://{$docRev->id}";
715                                         $mime_type = $docRev->file_mime_type;
716                                         $mail->AddAttachment($fileLocation,$locale->translateCharsetMIME(trim($filename), 'UTF-8', $OBCharset), 'base64', $mime_type);
717
718                                         // only save attachments if we're archiving or drafting
719                                         if((($this->type == 'draft') && !empty($this->id)) || (isset($request['saveToSugar']) && $request['saveToSugar'] == 1)) {
720                                                 $note = new Note();
721                                                 $note->id = create_guid();
722                                                 $note->new_with_id = true; // duplicating the note with files
723                                                 $note->parent_id = $this->id;
724                                                 $note->parent_type = $this->module_dir;
725                                                 $note->name = $filename;
726                                                 $note->filename = $filename;
727                                                 $note->file_mime_type = $mime_type;
728                         $dest = "upload://{$note->id}";
729                                                 if(!copy($fileLocation, $dest)) {
730                                                         $GLOBALS['log']->debug("EMAIL 2.0: could not copy SugarDocument revision file $fileLocation => $dest");
731                                                 }
732
733                                                 $note->save();
734                                         }
735                                 }
736                         }
737                 }
738
739                 /* handle template attachments */
740                 if(!empty($request['templateAttachments'])) {
741
742                         $exNotes = explode("::", $request['templateAttachments']);
743                         foreach($exNotes as $noteId) {
744                                 $noteId = trim($noteId);
745                                 if(!empty($noteId)) {
746                                         $note = new Note();
747                                         $note->retrieve($noteId);
748                                         if (!empty($note->id)) {
749                                                 $filename = $note->filename;
750                                                 $fileLocation = "upload://{$note->id}";
751                                                 $mime_type = $note->file_mime_type;
752                                                 if (!$note->embed_flag) {
753                                                         $mail->AddAttachment($fileLocation,$filename, 'base64', $mime_type);
754                                                         // only save attachments if we're archiving or drafting
755                                                         if((($this->type == 'draft') && !empty($this->id)) || (isset($request['saveToSugar']) && $request['saveToSugar'] == 1)) {
756
757                                                                 if ($note->parent_id != $this->id)
758                                                                     $this->saveTempNoteAttachments($filename,$fileLocation, $mime_type);
759                                                         } // if
760
761                                                 } // if
762                                         } else {
763                                                 //$fileLocation = $this->et->userCacheDir."/{$file}";
764                                                 $fileGUID = substr($noteId, 0, 36);
765                                                 $fileLocation = $this->et->userCacheDir."/{$fileGUID}";
766                                                 //$fileLocation = $this->et->userCacheDir."/{$noteId}";
767                                                 $filename = substr($noteId, 36, strlen($noteId)); // strip GUID for PHPMailer class to name outbound file
768
769                                                 $mail->AddAttachment($fileLocation,$locale->translateCharsetMIME(trim($filename), 'UTF-8', $OBCharset), 'base64', $this->email2GetMime($fileLocation));
770
771                                                 //If we are saving an email we were going to forward we need to save the attachments as well.
772                                                 if( (($this->type == 'draft') && !empty($this->id))
773                                                       || (isset($request['saveToSugar']) && $request['saveToSugar'] == 1))
774                                                   {
775                                                       $mimeType = $this->email2GetMime($fileLocation);
776                                                       $this->saveTempNoteAttachments($filename,$fileLocation, $mimeType);
777                                                  } // if
778                                         }
779                                 }
780                         }
781                 }
782
783
784
785                 /**********************************************************************
786                  * Final Touches
787                  */
788                 /* save email to sugar? */
789                 $forceSave = false;
790
791                 if($this->type == 'draft' && !isset($request['saveDraft'])) {
792                         // sending a draft email
793                         $this->type = 'out';
794                         $this->status = 'sent';
795                         $forceSave = true;
796                 } elseif(isset($request['saveDraft'])) {
797                         $this->type = 'draft';
798                         $this->status = 'draft';
799                         $forceSave = true;
800                 }
801
802                       /**********************************************************************
803          * SEND EMAIL (finally!)
804          */
805         $mailSent = false;
806         if ($this->type != 'draft') {
807             $mail->prepForOutbound();
808             $mail->Body = $this->decodeDuringSend($mail->Body);
809             $mail->AltBody = $this->decodeDuringSend($mail->AltBody);
810             if (!$mail->Send()) {
811                 $this->status = 'send_error';
812                 ob_clean();
813                 echo($app_strings['LBL_EMAIL_ERROR_PREPEND']. $mail->ErrorInfo);
814                 return false;
815             }
816         }
817
818                 if ((!(empty($orignialId) || isset($request['saveDraft']) || ($this->type == 'draft' && $this->status == 'draft'))) &&
819                         (($_REQUEST['composeType'] == 'reply') || ($_REQUEST['composeType'] == 'replyAll') || ($_REQUEST['composeType'] == 'replyCase')) && ($orignialId != $this->id)) {
820                         $originalEmail = new Email();
821                         $originalEmail->retrieve($orignialId);
822                         $originalEmail->reply_to_status = 1;
823                         $originalEmail->save();
824                         $this->reply_to_status = 0;
825                 } // if
826
827                 if ($_REQUEST['composeType'] == 'reply' || $_REQUEST['composeType'] == 'replyCase') {
828                         if (isset($_REQUEST['ieId']) && isset($_REQUEST['mbox'])) {
829                                 $emailFromIe = new InboundEmail();
830                                 $emailFromIe->retrieve($_REQUEST['ieId']);
831                                 $emailFromIe->mailbox = $_REQUEST['mbox'];
832                                 if (isset($emailFromIe->id) && $emailFromIe->is_personal) {
833                                         if ($emailFromIe->isPop3Protocol()) {
834                                                 $emailFromIe->mark_answered($this->uid, 'pop3');
835                                         }
836                                         elseif ($emailFromIe->connectMailserver() == 'true') {
837                                                 $emailFromIe->markEmails($this->uid, 'answered');
838                                                 $emailFromIe->mark_answered($this->uid);
839                                         }
840                                 }
841                         }
842                 }
843
844
845                 if(     $forceSave ||
846                         $this->type == 'draft' ||
847                         (isset($request['saveToSugar']) && $request['saveToSugar'] == 1)) {
848
849                         // saving a draft OR saving a sent email
850                         $decodedFromName = mb_decode_mimeheader($mail->FromName);
851                         $this->from_addr = "{$decodedFromName} <{$mail->From}>";
852                         $this->from_addr_name = $this->from_addr;
853                         $this->to_addrs = $_REQUEST['sendTo'];
854                         $this->to_addrs_names = $_REQUEST['sendTo'];
855                         $this->cc_addrs = $_REQUEST['sendCc'];
856                         $this->cc_addrs_names = $_REQUEST['sendCc'];
857                         $this->bcc_addrs = $_REQUEST['sendBcc'];
858                         $this->bcc_addrs_names = $_REQUEST['sendBcc'];
859                         $this->assigned_user_id = $current_user->id;
860
861                         $this->date_sent = $timedate->now();
862                         ///////////////////////////////////////////////////////////////////
863                         ////    LINK EMAIL TO SUGARBEANS BASED ON EMAIL ADDY
864
865                         if( isset($_REQUEST['parent_type']) && !empty($_REQUEST['parent_type']) &&
866                                 isset($_REQUEST['parent_id']) && !empty($_REQUEST['parent_id']) ) {
867                         $this->parent_id = $_REQUEST['parent_id'];
868                         $this->parent_type = $_REQUEST['parent_type'];
869                                         $q = "SELECT count(*) c FROM emails_beans WHERE  email_id = '{$this->id}' AND bean_id = '{$_REQUEST['parent_id']}' AND bean_module = '{$_REQUEST['parent_type']}'";
870                                         $r = $this->db->query($q);
871                                         $a = $this->db->fetchByAssoc($r);
872                                         if($a['c'] <= 0) {
873                                                 if(isset($beanList[$_REQUEST['parent_type']]) && !empty($beanList[$_REQUEST['parent_type']])) {
874                                                         $className = $beanList[$_REQUEST['parent_type']];
875                                                         if(isset($beanFiles[$className]) && !empty($beanFiles[$className])) {
876                                                                 if(!class_exists($className)) {
877                                                                         require_once($beanFiles[$className]);
878                                                                 }
879                                                                 $bean = new $className();
880                                                                 $bean->retrieve($_REQUEST['parent_id']);
881                                                                 if($bean->load_relationship('emails')) {
882                                                                         $bean->emails->add($this->id);
883                                                                 } // if
884
885                                                         } // if
886
887                                                 } // if
888
889                                         } // if
890
891                                 } else {
892                                         if(!class_exists('aCase')) {
893
894                                         }
895                                         else{
896                                                 $c = new aCase();
897                                                 if($caseId = InboundEmail::getCaseIdFromCaseNumber($mail->Subject, $c)) {
898                                                         $c->retrieve($caseId);
899                                                         $c->load_relationship('emails');
900                                                         $c->emails->add($this->id);
901                                                         $this->parent_type = "Cases";
902                                                         $this->parent_id = $caseId;
903                                                 } // if
904                                         }
905
906                                 } // else
907
908                         ////    LINK EMAIL TO SUGARBEANS BASED ON EMAIL ADDY
909                         ///////////////////////////////////////////////////////////////////
910                         $this->save();
911                 }
912
913                 if(!empty($request['fromAccount'])) {
914                         if (isset($ie->id) && !$ie->isPop3Protocol()) {
915                                 $sentFolder = $ie->get_stored_options("sentFolder");
916                                 if (!empty($sentFolder)) {
917                                         $data = $mail->CreateHeader() . "\r\n" . $mail->CreateBody() . "\r\n";
918                                         $ie->mailbox = $sentFolder;
919                                         if ($ie->connectMailserver() == 'true') {
920                                                 $connectString = $ie->getConnectString($ie->getServiceString(), $ie->mailbox);
921                                                 $returnData = imap_append($ie->conn,$connectString, $data, "\\Seen");
922                                                 if (!$returnData) {
923                                                         $GLOBALS['log']->debug("could not copy email to {$ie->mailbox} for {$ie->name}");
924                                                 } // if
925                                         } else {
926                                                 $GLOBALS['log']->debug("could not connect to mail serve for folder {$ie->mailbox} for {$ie->name}");
927                                         } // else
928                                 } else {
929                                         $GLOBALS['log']->debug("could not copy email to {$ie->mailbox} sent folder as its empty");
930                                 } // else
931                         } // if
932                 } // if
933                 return true;
934         } // end email2send
935
936         /**
937          * Generates a comma sperated name and addresses to be used in compose email screen for contacts or leads
938          * from listview
939          *
940          * @param $module string module name
941          * @param $idsArray array of record ids to get the email address for
942          * @return string comma delimited list of email addresses
943          */
944         public function getNamePlusEmailAddressesForCompose($module, $idsArray)
945         {
946                 global $locale;
947                 global $db;
948                 $table = SugarModule::get($module)->loadBean()->table_name;
949                 $returndata = array();
950                 $idsString = "";
951                 foreach($idsArray as $id) {
952                         if ($idsString != "") {
953                                 $idsString = $idsString . ",";
954                         } // if
955                         $idsString = $idsString . "'" . $id . "'";
956                 } // foreach
957                 $where = "({$table}.deleted = 0 AND {$table}.id in ({$idsString}))";
958
959                 if ($module == 'Users' || $module == 'Employees') {
960                         $selectColumn = "{$table}.first_name, {$table}.last_name, {$table}.title";
961                 }
962                 elseif (SugarModule::get($module)->moduleImplements('Person')) {
963                         $selectColumn = "{$table}.first_name, {$table}.last_name, {$table}.salutation, {$table}.title";
964                 }
965                 else {
966                     $selectColumn = "{$table}.name";
967                 }
968                 $query = "SELECT {$table}.id, {$selectColumn}, eabr.primary_address, ea.email_address";
969                 $query .= " FROM {$table} ";
970                 $query .= "JOIN email_addr_bean_rel eabr ON ({$table}.id = eabr.bean_id and eabr.deleted=0) ";
971                 $query .= "JOIN email_addresses ea ON (eabr.email_address_id = ea.id) ";
972                 $query .= " WHERE ({$where}) ORDER BY eabr.primary_address DESC";
973                 $r = $this->db->query($query);
974
975                 while($a = $this->db->fetchByAssoc($r)) {
976                         if (!isset($returndata[$a['id']])) {
977                                 if ($module == 'Users' || $module == 'Employees') {
978                                     $full_name = from_html($locale->getLocaleFormattedName($a['first_name'], $a['last_name'], '', $a['title']));
979                                         $returndata[$a['id']] = "{$full_name} <".from_html($a['email_address']).">";
980                                 }
981                                 elseif (SugarModule::get($module)->moduleImplements('Person')) {
982                                         $full_name = from_html($locale->getLocaleFormattedName($a['first_name'], $a['last_name'], $a['salutation'], $a['title']));
983                                         $returndata[$a['id']] = "{$full_name} <".from_html($a['email_address']).">";
984                                 }
985                                 else {
986                                         $returndata[$a['id']] = from_html($a['name']) . " <".from_html($a['email_address']).">";
987                                 } // else
988                         }
989                 }
990
991                 return join(",", array_values($returndata));
992     }
993
994         /**
995          * Overrides
996          */
997         ///////////////////////////////////////////////////////////////////////////
998         ////    SAVERS
999         function save($check_notify = false) {
1000                 if($this->isDuplicate) {
1001                         $GLOBALS['log']->debug("EMAIL - tried to save a duplicate Email record");
1002                 } else {
1003
1004                         if(empty($this->id)) {
1005                                 $this->id = create_guid();
1006                                 $this->new_with_id = true;
1007                         }
1008                         $this->from_addr_name = $this->cleanEmails($this->from_addr_name);
1009                         $this->to_addrs_names = $this->cleanEmails($this->to_addrs_names);
1010                         $this->cc_addrs_names = $this->cleanEmails($this->cc_addrs_names);
1011                         $this->bcc_addrs_names = $this->cleanEmails($this->bcc_addrs_names);
1012                         $this->reply_to_addr = $this->cleanEmails($this->reply_to_addr);
1013                         $this->description = to_html($this->safeText(from_html($this->description)));
1014                         $this->description_html = $this->safeText($this->description_html);
1015                         $this->saveEmailText();
1016                         $this->saveEmailAddresses();
1017
1018                         $GLOBALS['log']->debug('-------------------------------> Email called save()');
1019
1020                         // handle legacy concatenation of date and time fields
1021                         if(empty($this->date_sent)) $this->date_sent = $this->date_start." ".$this->time_start;
1022
1023                         parent::save($check_notify);
1024
1025                         if(!empty($this->parent_type) && !empty($this->parent_id)) {
1026                 if(!empty($this->fetched_row) && !empty($this->fetched_row['parent_id']) && !empty($this->fetched_row['parent_type'])) {
1027                     if($this->fetched_row['parent_id'] != $this->parent_id || $this->fetched_row['parent_type'] != $this->parent_type) {
1028                         $mod = strtolower($this->fetched_row['parent_type']);
1029                         $rel = array_key_exists($mod, $this->field_defs) ? $mod : $mod . "_activities_emails"; //Custom modules rel name
1030                         if($this->load_relationship($rel) ) {
1031                             $this->$rel->delete($this->id, $this->fetched_row['parent_id']);
1032                         }
1033                     }
1034                 }
1035                 $mod = strtolower($this->parent_type);
1036                 $rel = array_key_exists($mod, $this->field_defs) ? $mod : $mod . "_activities_emails"; //Custom modules rel name
1037                 if($this->load_relationship($rel) ) {
1038                     $this->$rel->add($this->parent_id);
1039                 }
1040                         }
1041                 }
1042                 $GLOBALS['log']->debug('-------------------------------> Email save() done');
1043         }
1044
1045         /**
1046          * Helper function to save temporary attachments assocaited to an email as note.
1047          *
1048          * @param string $filename
1049          * @param string $fileLocation
1050          * @param string $mimeType
1051          */
1052         function saveTempNoteAttachments($filename,$fileLocation, $mimeType)
1053         {
1054             $tmpNote = new Note();
1055             $tmpNote->id = create_guid();
1056             $tmpNote->new_with_id = true;
1057             $tmpNote->parent_id = $this->id;
1058             $tmpNote->parent_type = $this->module_dir;
1059             $tmpNote->name = $filename;
1060             $tmpNote->filename = $filename;
1061             $tmpNote->file_mime_type = $mimeType;
1062             $noteFile = "upload://{$tmpNote->id}";
1063             if(!copy($fileLocation, $noteFile)) {
1064             $GLOBALS['log']->fatal("EMAIL 2.0: could not copy SugarDocument revision file $fileLocation => $noteFile");
1065             }
1066             $tmpNote->save();
1067         }
1068         /**
1069          * Handles normalization of Email Addressess
1070          */
1071         function saveEmailAddresses() {
1072                 // from, single address
1073                 $fromId = $this->emailAddress->getEmailGUID(from_html($this->from_addr));
1074         if(!empty($fromId)){
1075                   $this->linkEmailToAddress($fromId, 'from');
1076         }
1077
1078                 // to, multiple
1079                 $replace = array(",",";");
1080                 $toaddrs = str_replace($replace, "::", from_html($this->to_addrs));
1081                 $exToAddrs = explode("::", $toaddrs);
1082
1083                 if(!empty($exToAddrs)) {
1084                         foreach($exToAddrs as $toaddr) {
1085                                 $toaddr = trim($toaddr);
1086                                 if(!empty($toaddr)) {
1087                                         $toId = $this->emailAddress->getEmailGUID($toaddr);
1088                                         $this->linkEmailToAddress($toId, 'to');
1089                                 }
1090                         }
1091                 }
1092
1093                 // cc, multiple
1094                 $ccAddrs = str_replace($replace, "::", from_html($this->cc_addrs));
1095                 $exccAddrs = explode("::", $ccAddrs);
1096
1097                 if(!empty($exccAddrs)) {
1098                         foreach($exccAddrs as $ccAddr) {
1099                                 $ccAddr = trim($ccAddr);
1100                                 if(!empty($ccAddr)) {
1101                                         $ccId = $this->emailAddress->getEmailGUID($ccAddr);
1102                                         $this->linkEmailToAddress($ccId, 'cc');
1103                                 }
1104                         }
1105                 }
1106
1107                 // bcc, multiple
1108                 $bccAddrs = str_replace($replace, "::", from_html($this->bcc_addrs));
1109                 $exbccAddrs = explode("::", $bccAddrs);
1110                 if(!empty($exbccAddrs)) {
1111                         foreach($exbccAddrs as $bccAddr) {
1112                                 $bccAddr = trim($bccAddr);
1113                                 if(!empty($bccAddr)) {
1114                                         $bccId = $this->emailAddress->getEmailGUID($bccAddr);
1115                                         $this->linkEmailToAddress($bccId, 'bcc');
1116                                 }
1117                         }
1118                 }
1119         }
1120
1121         function linkEmailToAddress($id, $type) {
1122                 // TODO: make this update?
1123                 $q1 = "SELECT * FROM emails_email_addr_rel WHERE email_id = '{$this->id}' AND email_address_id = '{$id}' AND address_type = '{$type}' AND deleted = 0";
1124                 $r1 = $this->db->query($q1);
1125                 $a1 = $this->db->fetchByAssoc($r1);
1126
1127                 if(!empty($a1) && !empty($a1['id'])) {
1128                         return $a1['id'];
1129                 } else {
1130                         $guid = create_guid();
1131                         $q2 = "INSERT INTO emails_email_addr_rel VALUES('{$guid}', '{$this->id}', '{$type}', '{$id}', 0)";
1132                         $r2 = $this->db->query($q2);
1133                 }
1134
1135                 return $guid;
1136         }
1137
1138     protected $email_to_text = array(
1139         "email_id" => "id",
1140         "description" => "description",
1141         "description_html" => "description_html",
1142         "raw_source" => "raw_source",
1143         "from_addr" => "from_addr_name",
1144         "reply_to_addr" => "reply_to_addr",
1145         "to_addrs" => "to_addrs_names",
1146         "cc_addrs" => "cc_addrs_names",
1147         "bcc_addrs" => "bcc_addrs_names",
1148     );
1149
1150         function cleanEmails($emails)
1151         {
1152             if(empty($emails)) return '';
1153                 $emails = str_replace(array(",",";"), "::", from_html($emails));
1154                 $addrs = explode("::", $emails);
1155                 $res = array();
1156                 foreach($addrs as $addr) {
1157             $parts = $this->emailAddress->splitEmailAddress($addr);
1158             if(empty($parts["email"])) {
1159                 continue;
1160             }
1161             if(!empty($parts["name"])) {
1162                 $res[] = "{$parts["name"]} <{$parts["email"]}>";
1163             } else {
1164                 $res[] .= $parts["email"];
1165             }
1166                 }
1167                 return join(", ", $res);
1168         }
1169
1170         protected function saveEmailText()
1171         {
1172         $text = SugarModule::get("EmailText")->loadBean();
1173         foreach($this->email_to_text as $textfield=>$mailfield) {
1174             $text->$textfield = $this->$mailfield;
1175         }
1176         $text->email_id = $this->id;
1177                 if(!$this->new_with_id) {
1178             $this->db->update($text);
1179                 } else {
1180                     $this->db->insert($text);
1181                 }
1182         }
1183
1184         ///////////////////////////////////////////////////////////////////////////
1185         ////    RETRIEVERS
1186         function retrieve($id, $encoded=true, $deleted=true) {
1187                 // cn: bug 11915, return SugarBean's retrieve() call bean instead of $this
1188                 $ret = parent::retrieve($id, $encoded, $deleted);
1189
1190                 if($ret) {
1191                         $ret->retrieveEmailText();
1192                         $ret->retrieveEmailAddresses();
1193                         $ret->raw_source = to_html($ret->safeText(from_html($ret->raw_source)));
1194                         $ret->description = to_html($ret->safeText(from_html($ret->description)));
1195                         $ret->description_html = $ret->safeText($ret->description_html);
1196
1197                         $ret->date_start = '';
1198                         $ret->time_start = '';
1199                         $dateSent = explode(' ', $ret->date_sent);
1200                         if (!empty($dateSent)) {
1201                             $ret->date_start = $dateSent[0];
1202                             if ( isset($dateSent[1]) )
1203                                 $ret->time_start = $dateSent[1];
1204                         }
1205                         // for Email 2.0
1206                         foreach($ret as $k => $v) {
1207                                 $this->$k = $v;
1208                         }
1209                 }
1210                 return $ret;
1211         }
1212
1213
1214         /**
1215          * Retrieves email addresses from GUIDs
1216          */
1217         function retrieveEmailAddresses() {
1218                 $return = array();
1219
1220                 $q = "SELECT email_address, address_type
1221                                 FROM emails_email_addr_rel eam
1222                                 JOIN email_addresses ea ON ea.id = eam.email_address_id
1223                                 WHERE eam.email_id = '{$this->id}' AND eam.deleted=0";
1224                 $r = $this->db->query($q);
1225
1226                 while($a = $this->db->fetchByAssoc($r)) {
1227                         if(!isset($return[$a['address_type']])) {
1228                                 $return[$a['address_type']] = array();
1229                         }
1230                         $return[$a['address_type']][] = $a['email_address'];
1231                 }
1232
1233                 if(count($return) > 0) {
1234                         if(isset($return['from'])) {
1235                                 $this->from_addr = implode(", ", $return['from']);
1236                         }
1237                         if(isset($return['to'])) {
1238                                 $this->to_addrs = implode(", ", $return['to']);
1239                         }
1240                         if(isset($return['cc'])) {
1241                                 $this->cc_addrs = implode(", ", $return['cc']);
1242                         }
1243                         if(isset($return['bcc'])) {
1244                                 $this->bcc_addrs = implode(", ", $return['bcc']);
1245                         }
1246                 }
1247         }
1248
1249         /**
1250          * Handles longtext fields
1251          */
1252         function retrieveEmailText() {
1253                 $q = "SELECT from_addr, reply_to_addr, to_addrs, cc_addrs, bcc_addrs, description, description_html, raw_source FROM emails_text WHERE email_id = '{$this->id}'";
1254                 $r = $this->db->query($q);
1255                 $a = $this->db->fetchByAssoc($r, false);
1256
1257                 $this->description = $a['description'];
1258                 $this->description_html = $a['description_html'];
1259                 $this->raw_source = $a['raw_source'];
1260                 $this->from_addr_name = $a['from_addr'];
1261                 $this->reply_to_addr  = $a['reply_to_addr'];
1262                 $this->to_addrs_names = $a['to_addrs'];
1263                 $this->cc_addrs_names = $a['cc_addrs'];
1264                 $this->bcc_addrs_names = $a['bcc_addrs'];
1265         }
1266
1267         function delete($id='') {
1268                 if(empty($id))
1269                         $id = $this->id;
1270
1271                 $q  = "UPDATE emails SET deleted = 1 WHERE id = '{$id}'";
1272                 $qt = "UPDATE emails_text SET deleted = 1 WHERE email_id = '{$id}'";
1273                 $r  = $this->db->query($q);
1274                 $rt = $this->db->query($qt);
1275         }
1276
1277         /**
1278          * creates the standard "Forward" info at the top of the forwarded message
1279          * @return string
1280          */
1281         function getForwardHeader() {
1282                 global $mod_strings;
1283                 global $current_user;
1284
1285                 //$from = str_replace(array("&gt;","&lt;"), array(")","("), $this->from_name);
1286                 $from = to_html($this->from_name);
1287                 $subject = to_html($this->name);
1288                 $ret  = "<br /><br />";
1289                 $ret .= $this->replyDelimiter."{$mod_strings['LBL_FROM']} {$from}<br />";
1290                 $ret .= $this->replyDelimiter."{$mod_strings['LBL_DATE_SENT']} {$this->date_sent}<br />";
1291                 $ret .= $this->replyDelimiter."{$mod_strings['LBL_TO']} {$this->to_addrs}<br />";
1292                 $ret .= $this->replyDelimiter."{$mod_strings['LBL_CC']} {$this->cc_addrs}<br />";
1293                 $ret .= $this->replyDelimiter."{$mod_strings['LBL_SUBJECT']} {$subject}<br />";
1294                 $ret .= $this->replyDelimiter."<br />";
1295
1296                 return $ret;
1297                 //return from_html($ret);
1298         }
1299
1300     /**
1301      * retrieves Notes that belong to this Email and stuffs them into the "attachments" attribute
1302      */
1303     function getNotes($id, $duplicate=false) {
1304         if(!class_exists('Note')) {
1305
1306         }
1307
1308         $exRemoved = array();
1309                 if(isset($_REQUEST['removeAttachment'])) {
1310                         $exRemoved = explode('::', $_REQUEST['removeAttachment']);
1311                 }
1312
1313         $noteArray = array();
1314         $q = "SELECT id FROM notes WHERE parent_id = '".$id."'";
1315         $r = $this->db->query($q);
1316
1317         while($a = $this->db->fetchByAssoc($r)) {
1318                 if(!in_array($a['id'], $exRemoved)) {
1319                     $note = new Note();
1320                     $note->retrieve($a['id']);
1321
1322                     // duplicate actual file when creating forwards
1323                         if($duplicate) {
1324                                 if(!class_exists('UploadFile')) {
1325                                         require_once('include/upload_file.php');
1326                                 }
1327                                 // save a brand new Note
1328                                 $noteDupe->id = create_guid();
1329                                 $noteDupe->new_with_id = true;
1330                                         $noteDupe->parent_id = $this->id;
1331                                         $noteDupe->parent_type = $this->module_dir;
1332
1333                                         $noteFile = new UploadFile();
1334                                         $noteFile->duplicate_file($a['id'], $note->id, $note->filename);
1335
1336                                         $note->save();
1337                         }
1338                         // add Note to attachments array
1339                     $this->attachments[] = $note;
1340                 }
1341         }
1342     }
1343
1344         /**
1345          * creates the standard "Reply" info at the top of the forwarded message
1346          * @return string
1347          */
1348         function getReplyHeader() {
1349                 global $mod_strings;
1350                 global $current_user;
1351
1352                 $from = str_replace(array("&gt;","&lt;", ">","<"), array(")","(",")","("), $this->from_name);
1353                 $ret  = "<br>{$mod_strings['LBL_REPLY_HEADER_1']} {$this->date_start}, {$this->time_start}, {$from} {$mod_strings['LBL_REPLY_HEADER_2']}";
1354
1355                 return from_html($ret);
1356         }
1357
1358         /**
1359          * Quotes plain-text email text
1360          * @param string $text
1361          * @return string
1362          */
1363         function quotePlainTextEmail($text) {
1364                 $quoted = "\n";
1365
1366                 // plain-text
1367                 $desc = nl2br(trim($text));
1368                 $exDesc = explode('<br />', $desc);
1369
1370                 foreach($exDesc as $k => $line) {
1371                         $quoted .= '> '.trim($line)."\r";
1372                 }
1373
1374                 return $quoted;
1375         }
1376
1377         /**
1378          * "quotes" (i.e., "> my text yadda" the HTML part of an email
1379          * @param string $text HTML text to quote
1380          * @return string
1381          */
1382         function quoteHtmlEmail($text) {
1383                 $text = trim(from_html($text));
1384
1385                 if(empty($text)) {
1386                         return '';
1387                 }
1388                 $out = "<div style='border-left:1px solid #00c; padding:5px; margin-left:10px;'>{$text}</div>";
1389
1390                 return $out;
1391         }
1392
1393         /**
1394          * "quotes" (i.e., "> my text yadda" the HTML part of an email
1395          * @param string $text HTML text to quote
1396          * @return string
1397          */
1398         function quoteHtmlEmailForNewEmailUI($text) {
1399                 $text = trim($text);
1400
1401                 if(empty($text)) {
1402                         return '';
1403                 }
1404                 $text = str_replace("\n", "\n<BR/>", $text);
1405                 $out = "<div style='border-left:1px solid #00c; padding:5px; margin-left:10px;'>{$text}</div>";
1406
1407                 return $out;
1408         }
1409
1410
1411
1412         ///////////////////////////////////////////////////////////////////////////
1413         ////    LEGACY CODE
1414         /**
1415          * Safes description text (both HTML and Plain Text) for display
1416          * @param string str The text to safe
1417          * @return string Safed text
1418          */
1419         function safeText($str)
1420         {
1421         if(empty($str)) return $str;
1422
1423         if(!strchr($str, "<")) {
1424             return $str;
1425         }
1426         // Safe_HTML
1427         $this->safe->clear();
1428         $ret = $this->safe->parse($str);
1429
1430                 // Julian's XSS cleaner
1431                 $potentials = clean_xss($ret, false);
1432
1433                 if(is_array($potentials) && !empty($potentials)) {
1434                         //_ppl($potentials);
1435                         foreach($potentials as $bad) {
1436                                 $ret = str_replace($bad, "", $ret);
1437                         }
1438                 }
1439
1440                 // clean <HTML> and <BODY> tags
1441                 $html = '#<\\\\\?HTML[\w =\'\"\&]*>#sim';
1442                 $body = '#<\\\\\?BODY[\w =\'\"\&]*>#sim';
1443
1444                 $ret = preg_replace($html, "", $ret);
1445                 $ret = preg_replace($body, "", $ret);
1446
1447                 return $ret;
1448         }
1449
1450         /**
1451          * Ensures that the user is able to send outbound emails
1452          */
1453         function check_email_settings() {
1454                 global $current_user;
1455
1456                 $mail_fromaddress = $current_user->emailAddress->getPrimaryAddress($current_user);
1457                 $replyToName = $current_user->getPreference('mail_fromname');
1458                 $mail_fromname = (!empty($replyToName)) ? $current_user->getPreference('mail_fromname') : $current_user->full_name;
1459
1460                 if(empty($mail_fromaddress)) {
1461                         return false;
1462                 }
1463                 if(empty($mail_fromname)) {
1464                         return false;
1465                 }
1466
1467         $send_type = $current_user->getPreference('mail_sendtype') ;
1468                 if (!empty($send_type) && $send_type == "SMTP") {
1469                         $mail_smtpserver = $current_user->getPreference('mail_smtpserver');
1470                         $mail_smtpport = $current_user->getPreference('mail_smtpport');
1471                         $mail_smtpauth_req = $current_user->getPreference('mail_smtpauth_req');
1472                         $mail_smtpuser = $current_user->getPreference('mail_smtpuser');
1473                         $mail_smtppass = $current_user->getPreference('mail_smtppass');
1474                         if (empty($mail_smtpserver) ||
1475                                 empty($mail_smtpport) ||
1476                 (!empty($mail_smtpauth_req) && ( empty($mail_smtpuser) || empty($mail_smtppass)))
1477                         ) {
1478                                 return false;
1479                         }
1480                 }
1481                 return true;
1482         }
1483
1484         /**
1485          * outputs JS to set fields in the MassUpdate form in the "My Inbox" view
1486          */
1487         function js_set_archived() {
1488                 global $mod_strings;
1489                 $script = '
1490                 <script type="text/javascript" language="JavaScript"><!-- Begin
1491                         function setArchived() {
1492                                 var form = document.getElementById("MassUpdate");
1493                                 var status = document.getElementById("mass_status");
1494                                 var ok = false;
1495
1496                                 for(var i=0; i < form.elements.length; i++) {
1497                                         if(form.elements[i].name == "mass[]") {
1498                                                 if(form.elements[i].checked == true) {
1499                                                         ok = true;
1500                                                 }
1501                                         }
1502                                 }
1503
1504                                 if(ok == true) {
1505                                         var user = document.getElementById("mass_assigned_user_name");
1506                                         var team = document.getElementById("team");
1507
1508                                         user.value = "";
1509                                         for(var j=0; j<status.length; j++) {
1510                                                 if(status.options[j].value == "archived") {
1511                                                         status.options[j].selected = true;
1512                                                         status.selectedIndex = j; // for IE
1513                                                 }
1514                                         }
1515
1516                                         form.submit();
1517                                 } else {
1518                                         alert("'.$mod_strings['ERR_ARCHIVE_EMAIL'].'");
1519                                 }
1520
1521                         }
1522                 //  End --></script>';
1523                 return $script;
1524         }
1525
1526         /**
1527          * replaces the javascript in utils.php - more specialized
1528          */
1529         function u_get_clear_form_js($type='', $group='', $assigned_user_id='') {
1530                 $uType                          = '';
1531                 $uGroup                         = '';
1532                 $uAssigned_user_id      = '';
1533
1534                 if(!empty($type)) { $uType = '&type='.$type; }
1535                 if(!empty($group)) { $uGroup = '&group='.$group; }
1536                 if(!empty($assigned_user_id)) { $uAssigned_user_id = '&assigned_user_id='.$assigned_user_id; }
1537
1538                 $the_script = '
1539                 <script type="text/javascript" language="JavaScript"><!-- Begin
1540                         function clear_form(form) {
1541                                 var newLoc = "index.php?action=" + form.action.value + "&module=" + form.module.value + "&query=true&clear_query=true'.$uType.$uGroup.$uAssigned_user_id.'";
1542                                 if(typeof(form.advanced) != "undefined"){
1543                                         newLoc += "&advanced=" + form.advanced.value;
1544                                 }
1545                                 document.location.href= newLoc;
1546                         }
1547                 //  End --></script>';
1548                 return $the_script;
1549         }
1550
1551         function pickOneButton() {
1552                 global $theme;
1553                 global $mod_strings;
1554                 $out = '<div><input     title="'.$mod_strings['LBL_BUTTON_GRAB_TITLE'].'"
1555                                                 class="button"
1556                                                 type="button" name="button"
1557                                                 onClick="window.location=\'index.php?module=Emails&action=Grab\';"
1558                                                 style="margin-bottom:2px"
1559                                                 value="  '.$mod_strings['LBL_BUTTON_GRAB'].'  "></div>';
1560                 return $out;
1561         }
1562
1563         /**
1564          * Determines what Editor (HTML or Plain-text) the current_user uses;
1565          * @return string Editor type
1566          */
1567         function getUserEditorPreference() {
1568                 global $sugar_config;
1569                 global $current_user;
1570
1571                 $editor = '';
1572
1573                 if(!isset($sugar_config['email_default_editor'])) {
1574                         $sugar_config = $current_user->setDefaultsInConfig();
1575                 }
1576
1577                 $userEditor = $current_user->getPreference('email_editor_option');
1578                 $systemEditor = $sugar_config['email_default_editor'];
1579
1580                 if($userEditor != '') {
1581                         $editor = $userEditor;
1582                 } else {
1583                         $editor = $systemEditor;
1584                 }
1585
1586                 return $editor;
1587         }
1588
1589         /**
1590          * takes the mess we pass from EditView and tries to create some kind of order
1591          * @param array addrs
1592          * @param array addrs_ids (from contacts)
1593          * @param array addrs_names (from contacts);
1594          * @param array addrs_emails (from contacts);
1595          * @return array Parsed assoc array to feed to PHPMailer
1596          */
1597         function parse_addrs($addrs, $addrs_ids, $addrs_names, $addrs_emails) {
1598                 // cn: bug 9406 - enable commas to separate email addresses
1599                 $addrs = str_replace(",", ";", $addrs);
1600
1601                 $ltgt = array('&lt;','&gt;');
1602                 $gtlt = array('<','>');
1603
1604                 $return                         = array();
1605                 $addrs                          = str_replace($ltgt, '', $addrs);
1606                 $addrs_arr                      = explode(";",$addrs);
1607                 $addrs_arr                      = $this->remove_empty_fields($addrs_arr);
1608                 $addrs_ids_arr          = explode(";",$addrs_ids);
1609                 $addrs_ids_arr          = $this->remove_empty_fields($addrs_ids_arr);
1610                 $addrs_emails_arr       = explode(";",$addrs_emails);
1611                 $addrs_emails_arr       = $this->remove_empty_fields($addrs_emails_arr);
1612                 $addrs_names_arr        = explode(";",$addrs_names);
1613                 $addrs_names_arr        = $this->remove_empty_fields($addrs_names_arr);
1614
1615                 ///////////////////////////////////////////////////////////////////////
1616                 ////    HANDLE EMAILS HAND-WRITTEN
1617                 $contactRecipients = array();
1618                 $knownEmails = array();
1619
1620                 foreach($addrs_arr as $i => $v) {
1621                         if(trim($v) == "")
1622                                 continue; // skip any "blanks" - will always have 1
1623
1624                         $recipient = array();
1625
1626                         //// get the email to see if we're dealing with a dupe
1627                         //// what crappy coding
1628                         preg_match("/[A-Z0-9._%-\']+@[A-Z0-9.-]+\.[A-Z]{2,}/i",$v, $match);
1629
1630
1631                         if(!empty($match[0]) && !in_array(trim($match[0]), $knownEmails)) {
1632                                 $knownEmails[] = $match[0];
1633                                 $recipient['email'] = $match[0];
1634
1635                                 //// handle the Display name
1636                                 $display = trim(str_replace($match[0], '', $v));
1637
1638                                 //// only trigger a "displayName" <email@address> when necessary
1639                                 if(isset($addrs_names_arr[$i])){
1640                                                 $recipient['display'] = $addrs_names_arr[$i];
1641                                 }
1642                                 else if(!empty($display)) {
1643                                         $recipient['display'] = $display;
1644                                 }
1645                                 if(isset($addrs_ids_arr[$i]) && $addrs_emails_arr[$i] == $match[0]){
1646                                         $recipient['contact_id'] = $addrs_ids_arr[$i];
1647                                 }
1648                                 $return[] = $recipient;
1649                         }
1650                 }
1651
1652                 return $return;
1653         }
1654
1655         function remove_empty_fields(&$arr) {
1656                 $newarr = array();
1657
1658                 foreach($arr as $field) {
1659                         $field = trim($field);
1660                         if(empty($field)) {
1661                                 continue;
1662                         }
1663                         array_push($newarr,$field);
1664                 }
1665                 return $newarr;
1666         }
1667
1668         /**
1669          * handles attachments of various kinds when sending email
1670          */
1671         function handleAttachments() {
1672
1673
1674
1675
1676                 global $mod_strings;
1677
1678         ///////////////////////////////////////////////////////////////////////////
1679         ////    ATTACHMENTS FROM DRAFTS
1680         if(($this->type == 'out' || $this->type == 'draft') && $this->status == 'draft' && isset($_REQUEST['record'])) {
1681             $this->getNotes($_REQUEST['record']); // cn: get notes from OLD email for use in new email
1682         }
1683         ////    END ATTACHMENTS FROM DRAFTS
1684         ///////////////////////////////////////////////////////////////////////////
1685
1686         ///////////////////////////////////////////////////////////////////////////
1687         ////    ATTACHMENTS FROM FORWARDS
1688         // Bug 8034 Jenny - Need the check for type 'draft' here to handle cases where we want to save
1689         // forwarded messages as drafts.  We still need to save the original message's attachments.
1690         if(($this->type == 'out' || $this->type == 'draft') &&
1691                 isset($_REQUEST['origType']) && $_REQUEST['origType'] == 'forward' &&
1692                 isset($_REQUEST['return_id']) && !empty($_REQUEST['return_id'])
1693         ) {
1694             $this->getNotes($_REQUEST['return_id'], true);
1695         }
1696
1697         // cn: bug 8034 - attachments from forward/replies lost when saving in draft
1698         if(isset($_REQUEST['prior_attachments']) && !empty($_REQUEST['prior_attachments']) && $this->new_with_id == true) {
1699                 $exIds = explode(",", $_REQUEST['prior_attachments']);
1700                 if(!isset($_REQUEST['template_attachment'])) {
1701                         $_REQUEST['template_attachment'] = array();
1702                 }
1703                 $_REQUEST['template_attachment'] = array_merge($_REQUEST['template_attachment'], $exIds);
1704         }
1705         ////    END ATTACHMENTS FROM FORWARDS
1706         ///////////////////////////////////////////////////////////////////////////
1707
1708                 ///////////////////////////////////////////////////////////////////////////
1709                 ////    ATTACHMENTS FROM TEMPLATES
1710                 // to preserve individual email integrity, we must dupe Notes and associated files
1711                 // for each outbound email - good for integrity, bad for filespace
1712                 if(isset($_REQUEST['template_attachment']) && !empty($_REQUEST['template_attachment'])) {
1713                         $removeArr = array();
1714                         $noteArray = array();
1715
1716                         if(isset($_REQUEST['temp_remove_attachment']) && !empty($_REQUEST['temp_remove_attachment'])) {
1717                                 $removeArr = $_REQUEST['temp_remove_attachment'];
1718                         }
1719
1720
1721                         foreach($_REQUEST['template_attachment'] as $noteId) {
1722                                 if(in_array($noteId, $removeArr)) {
1723                                         continue;
1724                                 }
1725                                 $noteTemplate = new Note();
1726                                 $noteTemplate->retrieve($noteId);
1727                                 $noteTemplate->id = create_guid();
1728                                 $noteTemplate->new_with_id = true; // duplicating the note with files
1729                                 $noteTemplate->parent_id = $this->id;
1730                                 $noteTemplate->parent_type = $this->module_dir;
1731                                 $noteTemplate->date_entered = '';
1732                                 $noteTemplate->save();
1733
1734                                 $noteFile = new UploadFile();
1735                                 $noteFile->duplicate_file($noteId, $noteTemplate->id, $noteTemplate->filename);
1736                                 $noteArray[] = $noteTemplate;
1737                         }
1738                         $this->attachments = array_merge($this->attachments, $noteArray);
1739                 }
1740                 ////    END ATTACHMENTS FROM TEMPLATES
1741                 ///////////////////////////////////////////////////////////////////////////
1742
1743                 ///////////////////////////////////////////////////////////////////////////
1744                 ////    ADDING NEW ATTACHMENTS
1745                 $max_files_upload = 10;
1746         // Jenny - Bug 8211 Since attachments for drafts have already been processed,
1747         // we don't need to re-process them.
1748         if($this->status != "draft") {
1749                 $notes_list = array();
1750                 if(!empty($this->id) && !$this->new_with_id) {
1751                         $note = new Note();
1752                         $where = "notes.parent_id='{$this->id}'";
1753                         $notes_list = $note->get_full_list("", $where, true);
1754                 }
1755                 $this->attachments = array_merge($this->attachments, $notes_list);
1756         }
1757                 // cn: Bug 5995 - rudimentary error checking
1758                 $filesError = array(
1759                         0 => 'UPLOAD_ERR_OK - There is no error, the file uploaded with success.',
1760                         1 => 'UPLOAD_ERR_INI_SIZE - The uploaded file exceeds the upload_max_filesize directive in php.ini.',
1761                         2 => 'UPLOAD_ERR_FORM_SIZE - The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.',
1762                         3 => 'UPLOAD_ERR_PARTIAL - The uploaded file was only partially uploaded.',
1763                         4 => 'UPLOAD_ERR_NO_FILE - No file was uploaded.',
1764                         5 => 'UNKNOWN ERROR',
1765                         6 => 'UPLOAD_ERR_NO_TMP_DIR - Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3.',
1766                         7 => 'UPLOAD_ERR_CANT_WRITE - Failed to write file to disk. Introduced in PHP 5.1.0.',
1767                 );
1768
1769                 for($i = 0; $i < $max_files_upload; $i++) {
1770                         // cn: Bug 5995 - rudimentary error checking
1771                         if (!isset($_FILES["email_attachment{$i}"])) {
1772                                 $GLOBALS['log']->debug("Email Attachment {$i} does not exist.");
1773                                 continue;
1774                         }
1775                         if($_FILES['email_attachment'.$i]['error'] != 0 && $_FILES['email_attachment'.$i]['error'] != 4) {
1776                                 $GLOBALS['log']->debug('Email Attachment could not be attach due to error: '.$filesError[$_FILES['email_attachment'.$i]['error']]);
1777                                 continue;
1778                         }
1779
1780                         $note = new Note();
1781                         $note->parent_id = $this->id;
1782                         $note->parent_type = $this->module_dir;
1783                         $upload_file = new UploadFile('email_attachment'.$i);
1784
1785                         if(empty($upload_file)) {
1786                                 continue;
1787                         }
1788
1789                         if(isset($_FILES['email_attachment'.$i]) && $upload_file->confirm_upload()) {
1790                                 $note->filename = $upload_file->get_stored_file_name();
1791                                 $note->file = $upload_file;
1792                                 $note->name = $mod_strings['LBL_EMAIL_ATTACHMENT'].': '.$note->file->original_file_name;
1793
1794                                 $this->attachments[] = $note;
1795                         }
1796                 }
1797
1798                 $this->saved_attachments = array();
1799                 foreach($this->attachments as $note) {
1800                         if(!empty($note->id)) {
1801                                 array_push($this->saved_attachments, $note);
1802                                 continue;
1803                         }
1804                         $note->parent_id = $this->id;
1805                         $note->parent_type = 'Emails';
1806                         $note->file_mime_type = $note->file->mime_type;
1807                         $note_id = $note->save();
1808
1809                         $this->saved_attachments[] = $note;
1810
1811                         $note->id = $note_id;
1812                         $note->file->final_move($note->id);
1813                 }
1814                 ////    END NEW ATTACHMENTS
1815                 ///////////////////////////////////////////////////////////////////////////
1816
1817                 ///////////////////////////////////////////////////////////////////////////
1818                 ////    ATTACHMENTS FROM DOCUMENTS
1819                 for($i=0; $i<10; $i++) {
1820                         if(isset($_REQUEST['documentId'.$i]) && !empty($_REQUEST['documentId'.$i])) {
1821                                 $doc = new Document();
1822                                 $docRev = new DocumentRevision();
1823                                 $docNote = new Note();
1824                                 $noteFile = new UploadFile();
1825
1826                                 $doc->retrieve($_REQUEST['documentId'.$i]);
1827                                 $docRev->retrieve($doc->document_revision_id);
1828
1829                                 $this->saved_attachments[] = $docRev;
1830
1831                                 // cn: bug 9723 - Emails with documents send GUID instead of Doc name
1832                                 $docNote->name = $docRev->getDocumentRevisionNameForDisplay();
1833                                 $docNote->filename = $docRev->filename;
1834                                 $docNote->description = $doc->description;
1835                                 $docNote->parent_id = $this->id;
1836                                 $docNote->parent_type = 'Emails';
1837                                 $docNote->file_mime_type = $docRev->file_mime_type;
1838                                 $docId = $docNote = $docNote->save();
1839
1840                                 $noteFile->duplicate_file($docRev->id, $docId, $docRev->filename);
1841                         }
1842                 }
1843
1844                 ////    END ATTACHMENTS FROM DOCUMENTS
1845                 ///////////////////////////////////////////////////////////////////////////
1846
1847                 ///////////////////////////////////////////////////////////////////////////
1848                 ////    REMOVE ATTACHMENTS
1849         if(isset($_REQUEST['remove_attachment']) && !empty($_REQUEST['remove_attachment'])) {
1850             foreach($_REQUEST['remove_attachment'] as $noteId) {
1851                 $q = 'UPDATE notes SET deleted = 1 WHERE id = \''.$noteId.'\'';
1852                 $this->db->query($q);
1853             }
1854         }
1855
1856         //this will remove attachments that have been selected to be removed from drafts.
1857         if(isset($_REQUEST['removeAttachment']) && !empty($_REQUEST['removeAttachment'])) {
1858             $exRemoved = explode('::', $_REQUEST['removeAttachment']);
1859             foreach($exRemoved as $noteId) {
1860                 $q = 'UPDATE notes SET deleted = 1 WHERE id = \''.$noteId.'\'';
1861                 $this->db->query($q);
1862             }
1863         }
1864                 ////    END REMOVE ATTACHMENTS
1865                 ///////////////////////////////////////////////////////////////////////////
1866         }
1867
1868
1869         /**
1870          * Determines if an email body (HTML or Plain) has a User signature already in the content
1871          * @param array Array of signatures
1872          * @return bool
1873          */
1874         function hasSignatureInBody($sig) {
1875                 // strpos can't handle line breaks - normalize
1876                 $html = $this->removeAllNewlines($this->description_html);
1877                 $htmlSig = $this->removeAllNewlines($sig['signature_html']);
1878                 $plain = $this->removeAllNewlines($this->description);
1879                 $plainSig = $this->removeAllNewlines($sig['signature']);
1880
1881                 // cn: bug 11621 - empty sig triggers notice error
1882                 if(!empty($htmlSig) && false !== strpos($html, $htmlSig)) {
1883                         return true;
1884                 } elseif(!empty($plainSig) && false !== strpos($plain, $plainSig)) {
1885                         return true;
1886                 } else {
1887                         return false;
1888                 }
1889         }
1890
1891         /**
1892          * internal helper
1893          * @param string String to be normalized
1894          * @return string
1895          */
1896         function removeAllNewlines($str) {
1897                 $bad = array("\r\n", "\n\r", "\n", "\r");
1898                 $good = array('', '', '', '');
1899
1900                 return str_replace($bad, $good, strip_tags(br2nl(from_html($str))));
1901         }
1902
1903
1904
1905         /**
1906          * Set navigation anchors to aid DetailView record navigation (VCR buttons)
1907          * @param string uri The URI from the referring page (always ListView)
1908          * @return array start Array of the URI broken down with a special "current_view" for My Inbox Navs
1909          */
1910         function getStartPage($uri) {
1911                 if(strpos($uri, '&')) { // "&" to ensure that we can explode the GET vars - else we're gonna trigger a Notice error
1912                         $serial = substr($uri, (strpos($uri, '?')+1), strlen($uri));
1913                         $exUri = explode('&', $serial);
1914                         $start = array('module' => '', 'action' => '', 'group' => '', 'record' => '', 'type' => '');
1915
1916                         foreach($exUri as $k => $pair) {
1917                                 $exPair = explode('=', $pair);
1918                                 $start[$exPair[0]] = $exPair[1];
1919                         }
1920
1921                         // specific views for current_user
1922                         if(isset($start['assigned_user_id'])) {
1923                                 $start['current_view'] = "{$start['action']}&module={$start['module']}&assigned_user_id={$start['assigned_user_id']}&type={$start['type']}";
1924                         }
1925
1926                         return $start;
1927                 } else {
1928                         return array();
1929                 }
1930         }
1931
1932         /**
1933          * preps SMTP info for email transmission
1934          * @param object mail SugarPHPMailer object
1935          * @param string mailer_id
1936          * @param string ieId
1937          * @return object mail SugarPHPMailer object
1938          */
1939         function setMailer($mail, $mailer_id='', $ieId='') {
1940                 global $current_user;
1941
1942                 require_once("include/OutboundEmail/OutboundEmail.php");
1943                 $oe = new OutboundEmail();
1944                 $oe = $oe->getInboundMailerSettings($current_user, $mailer_id, $ieId);
1945
1946                 // ssl or tcp - keeping outside isSMTP b/c a default may inadvertantly set ssl://
1947                 $mail->protocol = ($oe->mail_smtpssl) ? "ssl://" : "tcp://";
1948         if($oe->mail_sendtype == "SMTP")
1949         {
1950                 //Set mail send type information
1951                 $mail->Mailer = "smtp";
1952                 $mail->Host = $oe->mail_smtpserver;
1953                 $mail->Port = $oe->mail_smtpport;
1954             if ($oe->mail_smtpssl == 1) {
1955                 $mail->SMTPSecure = 'ssl';
1956             } // if
1957             if ($oe->mail_smtpssl == 2) {
1958                 $mail->SMTPSecure = 'tls';
1959             } // if
1960
1961                 if($oe->mail_smtpauth_req) {
1962                         $mail->SMTPAuth = TRUE;
1963                         $mail->Username = $oe->mail_smtpuser;
1964                         $mail->Password = $oe->mail_smtppass;
1965                 }
1966         }
1967         else
1968                         $mail->Mailer = "sendmail";
1969
1970                 $mail->oe = $oe;
1971                 return $mail;
1972         }
1973
1974         /**
1975          * preps SugarPHPMailer object for HTML or Plain text sends
1976          * @param SugarPHPMailer $mail SugarPHPMailer instance
1977          */
1978         function handleBody($mail) {
1979                 global $current_user;
1980                 global $sugar_config;
1981                 ///////////////////////////////////////////////////////////////////////
1982                 ////    HANDLE EMAIL FORMAT PREFERENCE
1983                 // the if() below is HIGHLY dependent on the Javascript unchecking the Send HTML Email box
1984                 // HTML email
1985                 if( (isset($_REQUEST['setEditor']) /* from Email EditView navigation */
1986                         && $_REQUEST['setEditor'] == 1
1987                         && trim($_REQUEST['description_html']) != '')
1988                         || trim($this->description_html) != '' /* from email templates */
1989             && $current_user->getPreference('email_editor_option', 'global') !== 'plain' //user preference is not set to plain text
1990                 ) {
1991                     $this->handleBodyInHTMLformat($mail);
1992                 } else {
1993                         // plain text only
1994                         $this->description_html = '';
1995                         $mail->IsHTML(false);
1996                         $plainText = from_html($this->description);
1997                         $plainText = str_replace("&nbsp;", " ", $plainText);
1998                         $plainText = str_replace("</p>", "</p><br />", $plainText);
1999                         $plainText = strip_tags(br2nl($plainText));
2000                         $plainText = str_replace("&amp;", "&", $plainText);
2001             $plainText = str_replace("&#39;", "'", $plainText);
2002                         $mail->Body = wordwrap($plainText, 996);
2003                         $mail->Body = $this->decodeDuringSend($mail->Body);
2004                         $this->description = $mail->Body;
2005                 }
2006
2007                 // wp: if plain text version has lines greater than 998, use base64 encoding
2008                 foreach(explode("\n", ($mail->ContentType == "text/html") ? $mail->AltBody : $mail->Body) as $line) {
2009                         if(strlen($line) > 998) {
2010                                 $mail->Encoding = 'base64';
2011                                 break;
2012                         }
2013                 }
2014                 ////    HANDLE EMAIL FORMAT PREFERENCE
2015                 ///////////////////////////////////////////////////////////////////////
2016
2017                 return $mail;
2018         }
2019
2020
2021         /**
2022          * Retrieve function from handlebody() to unit test easily
2023          * @param SugarPHPMailer $mail SugarPHPMailer instance
2024          * @return formatted $mail body
2025          */
2026         function handleBodyInHTMLformat($mail) {
2027                 global $sugar_config;
2028                 // wp: if body is html, then insert new lines at 996 characters. no effect on client side
2029                 // due to RFC 2822 which limits email lines to 998
2030                 $mail->IsHTML(true);
2031                 $body = from_html(wordwrap($this->description_html, 996));
2032                 $mail->Body = $body;
2033
2034                 // cn: bug 9725
2035                 // new plan is to use the selected type (html or plain) to fill the other
2036                 $plainText = from_html($this->description_html);
2037                 $plainText = strip_tags(br2nl($plainText));
2038                 $mail->AltBody = $plainText;
2039                 $this->description = $plainText;
2040
2041                 $mail->replaceImageByRegex("(?:{$sugar_config['site_url']})?/?cache/images/", sugar_cached("images/"));
2042
2043                 //Replace any embeded images using the secure entryPoint for src url.
2044                 $mail->replaceImageByRegex("(?:{$sugar_config['site_url']})?/?index.php[?]entryPoint=download&(?:amp;)?[^\"]+?id=", "upload://", true);
2045
2046                 $mail->Body = from_html($mail->Body);
2047         }
2048
2049         /**
2050          * Sends Email
2051          * @return bool True on success
2052          */
2053         function send() {
2054                 global $mod_strings,$app_strings;
2055                 global $current_user;
2056                 global $sugar_config;
2057                 global $locale;
2058         $OBCharset = $locale->getPrecedentPreference('default_email_charset');
2059                 $mail = new SugarPHPMailer();
2060
2061                 foreach ($this->to_addrs_arr as $addr_arr) {
2062                         if ( empty($addr_arr['display'])) {
2063                                 $mail->AddAddress($addr_arr['email'], "");
2064                         } else {
2065                                 $mail->AddAddress($addr_arr['email'],$locale->translateCharsetMIME(trim( $addr_arr['display']), 'UTF-8', $OBCharset));
2066                         }
2067                 }
2068                 foreach ($this->cc_addrs_arr as $addr_arr) {
2069                         if ( empty($addr_arr['display'])) {
2070                                 $mail->AddCC($addr_arr['email'], "");
2071                         } else {
2072                                 $mail->AddCC($addr_arr['email'],$locale->translateCharsetMIME(trim($addr_arr['display']), 'UTF-8', $OBCharset));
2073                         }
2074                 }
2075
2076                 foreach ($this->bcc_addrs_arr as $addr_arr) {
2077                         if ( empty($addr_arr['display'])) {
2078                                 $mail->AddBCC($addr_arr['email'], "");
2079                         } else {
2080                                 $mail->AddBCC($addr_arr['email'],$locale->translateCharsetMIME(trim($addr_arr['display']), 'UTF-8', $OBCharset));
2081                         }
2082                 }
2083
2084                 $mail = $this->setMailer($mail);
2085
2086                 // FROM ADDRESS
2087                 if(!empty($this->from_addr)) {
2088                         $mail->From = $this->from_addr;
2089                 } else {
2090                         $mail->From = $current_user->getPreference('mail_fromaddress');
2091                         $this->from_addr = $mail->From;
2092                 }
2093                 // FROM NAME
2094                 if(!empty($this->from_name)) {
2095                         $mail->FromName = $this->from_name;
2096                 } else {
2097                         $mail->FromName =  $current_user->getPreference('mail_fromname');
2098                         $this->from_name = $mail->FromName;
2099                 }
2100
2101                 //Reply to information for case create and autoreply.
2102                 if(!empty($this->reply_to_name)) {
2103                         $ReplyToName = $this->reply_to_name;
2104                 } else {
2105                         $ReplyToName = $mail->FromName;
2106                 }
2107                 if(!empty($this->reply_to_addr)) {
2108                         $ReplyToAddr = $this->reply_to_addr;
2109                 } else {
2110                         $ReplyToAddr = $mail->From;
2111                 }
2112                 $mail->Sender = $mail->From; /* set Return-Path field in header to reduce spam score in emails sent via Sugar's Email module */
2113                 $mail->AddReplyTo($ReplyToAddr,$locale->translateCharsetMIME(trim($ReplyToName), 'UTF-8', $OBCharset));
2114
2115                 //$mail->Subject = html_entity_decode($this->name, ENT_QUOTES, 'UTF-8');
2116                 $mail->Subject = $this->name;
2117
2118                 ///////////////////////////////////////////////////////////////////////
2119                 ////    ATTACHMENTS
2120                 foreach($this->saved_attachments as $note) {
2121                         $mime_type = 'text/plain';
2122                         if($note->object_name == 'Note') {
2123                                 if(!empty($note->file->temp_file_location) && is_file($note->file->temp_file_location)) { // brandy-new file upload/attachment
2124                                         $file_location = "upload://$note->id";
2125                                         $filename = $note->file->original_file_name;
2126                                         $mime_type = $note->file->mime_type;
2127                                 } else { // attachment coming from template/forward
2128                                         $file_location = "upload://{$note->id}";
2129                                         // cn: bug 9723 - documents from EmailTemplates sent with Doc Name, not file name.
2130                                         $filename = !empty($note->filename) ? $note->filename : $note->name;
2131                                         $mime_type = $note->file_mime_type;
2132                                 }
2133                         } elseif($note->object_name == 'DocumentRevision') { // from Documents
2134                                 $filePathName = $note->id;
2135                                 // cn: bug 9723 - Emails with documents send GUID instead of Doc name
2136                                 $filename = $note->getDocumentRevisionNameForDisplay();
2137                                 $file_location = "upload://$note->id";
2138                                 $mime_type = $note->file_mime_type;
2139                         }
2140
2141                         // strip out the "Email attachment label if exists
2142                         $filename = str_replace($mod_strings['LBL_EMAIL_ATTACHMENT'].': ', '', $filename);
2143             $file_ext = pathinfo($filename, PATHINFO_EXTENSION);
2144                         //is attachment in our list of bad files extensions?  If so, append .txt to file location
2145                         //check to see if this is a file with extension located in "badext"
2146                         foreach($sugar_config['upload_badext'] as $badExt) {
2147                         if(strtolower($file_ext) == strtolower($badExt)) {
2148                                 //if found, then append with .txt to filename and break out of lookup
2149                                 //this will make sure that the file goes out with right extension, but is stored
2150                                 //as a text in db.
2151                                 $file_location = $file_location . ".txt";
2152                                 break; // no need to look for more
2153                         }
2154                 }
2155                         $mail->AddAttachment($file_location,$locale->translateCharsetMIME(trim($filename), 'UTF-8', $OBCharset), 'base64', $mime_type);
2156
2157                         // embedded Images
2158                         if($note->embed_flag == true) {
2159                                 $cid = $filename;
2160                                 $mail->AddEmbeddedImage($file_location, $cid, $filename, 'base64',$mime_type);
2161                         }
2162                 }
2163                 ////    END ATTACHMENTS
2164                 ///////////////////////////////////////////////////////////////////////
2165
2166                 $mail = $this->handleBody($mail);
2167
2168                 $GLOBALS['log']->debug('Email sending --------------------- ');
2169
2170                 ///////////////////////////////////////////////////////////////////////
2171                 ////    I18N TRANSLATION
2172                 $mail->prepForOutbound();
2173                 ////    END I18N TRANSLATION
2174                 ///////////////////////////////////////////////////////////////////////
2175
2176                 if($mail->Send()) {
2177                         ///////////////////////////////////////////////////////////////////
2178                         ////    INBOUND EMAIL HANDLING
2179                         // mark replied
2180                         if(!empty($_REQUEST['inbound_email_id'])) {
2181                                 $ieMail = new Email();
2182                                 $ieMail->retrieve($_REQUEST['inbound_email_id']);
2183                                 $ieMail->status = 'replied';
2184                                 $ieMail->save();
2185                         }
2186                         $GLOBALS['log']->debug(' --------------------- buh bye -- sent successful');
2187                         ////    END INBOUND EMAIL HANDLING
2188                         ///////////////////////////////////////////////////////////////////
2189                         return true;
2190                 }
2191             $GLOBALS['log']->debug($app_strings['LBL_EMAIL_ERROR_PREPEND'].$mail->ErrorInfo);
2192                 return false;
2193         }
2194
2195
2196         function listviewACLHelper(){
2197                 $array_assign = parent::listviewACLHelper();
2198                 $is_owner = false;
2199                 if(!empty($this->parent_name)){
2200
2201                         if(!empty($this->parent_name_owner)){
2202                                 global $current_user;
2203                                 $is_owner = $current_user->id == $this->parent_name_owner;
2204                         }
2205                 }
2206                 if(!ACLController::moduleSupportsACL($this->parent_type) || ACLController::checkAccess($this->parent_type, 'view', $is_owner)){
2207                         $array_assign['PARENT'] = 'a';
2208                 } else {
2209                         $array_assign['PARENT'] = 'span';
2210                 }
2211                 $is_owner = false;
2212                 if(!empty($this->contact_name)) {
2213                         if(!empty($this->contact_name_owner)) {
2214                                 global $current_user;
2215                                 $is_owner = $current_user->id == $this->contact_name_owner;
2216                         }
2217                 }
2218                 if(ACLController::checkAccess('Contacts', 'view', $is_owner)) {
2219                         $array_assign['CONTACT'] = 'a';
2220                 } else {
2221                         $array_assign['CONTACT'] = 'span';
2222                 }
2223
2224                 return $array_assign;
2225         }
2226
2227         function getSystemDefaultEmail() {
2228                 $email = array();
2229
2230                 $r1 = $this->db->query('SELECT config.value FROM config WHERE name=\'fromaddress\'');
2231                 $r2 = $this->db->query('SELECT config.value FROM config WHERE name=\'fromname\'');
2232                 $a1 = $this->db->fetchByAssoc($r1);
2233                 $a2 = $this->db->fetchByAssoc($r2);
2234
2235                 $email['email'] = $a1['value'];
2236                 $email['name']  = $a2['value'];
2237
2238                 return $email;
2239         }
2240
2241
2242     function create_new_list_query($order_by, $where,$filter=array(),$params=array(), $show_deleted = 0,$join_type='', $return_array = false,$parentbean=null, $singleSelect = false) {
2243
2244                 if ($return_array) {
2245                         return parent::create_new_list_query($order_by, $where,$filter,$params, $show_deleted,$join_type, $return_array,$parentbean, $singleSelect);
2246                 }
2247         $custom_join = $this->custom_fields->getJOIN();
2248
2249                 $query = "SELECT ".$this->table_name.".*, users.user_name as assigned_user_name\n";
2250
2251         if($custom_join){
2252                         $query .= $custom_join['select'];
2253                 }
2254         $query .= " FROM emails\n";
2255         if ($where != "" && (strpos($where, "contacts.first_name") > 0))  {
2256                         $query .= " LEFT JOIN emails_beans ON emails.id = emails_beans.email_id\n";
2257         }
2258
2259         $query .= " LEFT JOIN users ON emails.assigned_user_id=users.id \n";
2260         if ($where != "" && (strpos($where, "contacts.first_name") > 0))  {
2261
2262         $query .= " JOIN contacts ON contacts.id= emails_beans.bean_id AND emails_beans.bean_module='Contacts' and contacts.deleted=0 \n";
2263         }
2264
2265                 if($custom_join){
2266                         $query .= $custom_join['join'];
2267                 }
2268
2269                 if($show_deleted == 0) {
2270                         $where_auto = " emails.deleted=0 \n";
2271                 }else if($show_deleted == 1){
2272                         $where_auto = " emails.deleted=1 \n";
2273                 }
2274
2275         if($where != "")
2276                         $query .= "WHERE $where AND ".$where_auto;
2277                 else
2278                         $query .= "WHERE ".$where_auto;
2279
2280                 if($order_by != "")
2281                         $query .= " ORDER BY $order_by";
2282                 else
2283                         $query .= " ORDER BY date_sent DESC";
2284
2285                 return $query;
2286     } // fn
2287
2288
2289         function fill_in_additional_list_fields() {
2290                 global $timedate, $mod_strings;
2291                 $this->fill_in_additional_detail_fields();
2292
2293                 $this->link_action = 'DetailView';
2294                 ///////////////////////////////////////////////////////////////////////
2295                 //populate attachment_image, used to display attachment icon.
2296                 $query =  "select 1 from notes where notes.parent_id = '$this->id' and notes.deleted = 0";
2297                 $result =$this->db->query($query,true," Error filling in additional list fields: ");
2298
2299                 $row = $this->db->fetchByAssoc($result);
2300         $this->attachment_image = ($row !=null) ? SugarThemeRegistry::current()->getImage('attachment',"","","") : "";
2301
2302                 if ($row !=null) {
2303                         $this->attachment_image = SugarThemeRegistry::current()->getImage('attachment',"","","",'.gif',translate('LBL_ATTACHMENT', 'Emails'));
2304                 }
2305
2306                 ///////////////////////////////////////////////////////////////////////
2307                 if(empty($this->contact_id) && !empty($this->parent_id) && !empty($this->parent_type) && $this->parent_type === 'Contacts' && !empty($this->parent_name) ){
2308                         $this->contact_id = $this->parent_id;
2309                         $this->contact_name = $this->parent_name;
2310                 }
2311         }
2312
2313         function fill_in_additional_detail_fields() {
2314                 global $app_list_strings,$mod_strings;
2315                 // Fill in the assigned_user_name
2316                 $this->assigned_user_name = get_assigned_user_name($this->assigned_user_id, '');
2317                 //if ($this->parent_type == 'Contacts') {
2318                         $query  = "SELECT contacts.first_name, contacts.last_name, contacts.phone_work, contacts.id, contacts.assigned_user_id contact_name_owner, 'Contacts' contact_name_mod FROM contacts, emails_beans ";
2319                         $query .= "WHERE emails_beans.email_id='$this->id' AND emails_beans.bean_id=contacts.id AND emails_beans.bean_module = 'Contacts' AND emails_beans.deleted=0 AND contacts.deleted=0";
2320                         if(!empty($this->parent_id)){
2321                                 $query .= " AND contacts.id= '".$this->parent_id."' ";
2322                         }else if(!empty($_REQUEST['record'])){
2323                                 $query .= " AND contacts.id= '".$_REQUEST['record']."' ";
2324                         }
2325                         $result =$this->db->query($query,true," Error filling in additional detail fields: ");
2326
2327                         // Get the id and the name.
2328                         $row = $this->db->fetchByAssoc($result);
2329                         if($row != null)
2330                         {
2331
2332                                 $contact = new Contact();
2333                                 $contact->retrieve($row['id']);
2334                                 $this->contact_name = $contact->full_name;
2335                                 $this->contact_phone = $row['phone_work'];
2336                                 $this->contact_id = $row['id'];
2337                                 $this->contact_email = $contact->emailAddress->getPrimaryAddress($contact);
2338                                 $this->contact_name_owner = $row['contact_name_owner'];
2339                                 $this->contact_name_mod = $row['contact_name_mod'];
2340                                 $GLOBALS['log']->debug("Call($this->id): contact_name = $this->contact_name");
2341                                 $GLOBALS['log']->debug("Call($this->id): contact_phone = $this->contact_phone");
2342                                 $GLOBALS['log']->debug("Call($this->id): contact_id = $this->contact_id");
2343                                 $GLOBALS['log']->debug("Call($this->id): contact_email1 = $this->contact_email");
2344                         }
2345                         else {
2346                                 $this->contact_name = '';
2347                                 $this->contact_phone = '';
2348                                 $this->contact_id = '';
2349                                 $this->contact_email = '';
2350                                 $this->contact_name_owner = '';
2351                                 $this->contact_name_mod = '';
2352                                 $GLOBALS['log']->debug("Call($this->id): contact_name = $this->contact_name");
2353                                 $GLOBALS['log']->debug("Call($this->id): contact_phone = $this->contact_phone");
2354                                 $GLOBALS['log']->debug("Call($this->id): contact_id = $this->contact_id");
2355                                 $GLOBALS['log']->debug("Call($this->id): contact_email1 = $this->contact_email");
2356                         }
2357                 //}
2358                 $this->created_by_name = get_assigned_user_name($this->created_by);
2359                 $this->modified_by_name = get_assigned_user_name($this->modified_user_id);
2360
2361                 $this->link_action = 'DetailView';
2362
2363                 if(!empty($this->type)) {
2364                         if($this->type == 'out' && $this->status == 'send_error') {
2365                                 $this->type_name = $mod_strings['LBL_NOT_SENT'];
2366                         } else {
2367                                 $this->type_name = $app_list_strings['dom_email_types'][$this->type];
2368                         }
2369
2370                         if(($this->type == 'out' && $this->status == 'send_error') || $this->type == 'draft') {
2371                                 $this->link_action = 'EditView';
2372                         }
2373                 }
2374
2375                 //todo this  isset( $app_list_strings['dom_email_status'][$this->status]) is hack for 3261.
2376                 if(!empty($this->status) && isset( $app_list_strings['dom_email_status'][$this->status])) {
2377                         $this->status_name = $app_list_strings['dom_email_status'][$this->status];
2378                 }
2379
2380                 if ( empty($this->name ) &&  empty($_REQUEST['record'])) {
2381                         $this->name = $mod_strings['LBL_NO_SUBJECT'];
2382                 }
2383
2384                 $this->fill_in_additional_parent_fields();
2385         }
2386
2387
2388
2389         function create_export_query(&$order_by, &$where) {
2390                 $contact_required = stristr($where, "contacts");
2391                 $custom_join = $this->custom_fields->getJOIN(true, true,$where);
2392
2393                 if($contact_required) {
2394                         $query = "SELECT emails.*, contacts.first_name, contacts.last_name";
2395                         if($custom_join) {
2396                                 $query .= $custom_join['select'];
2397                         }
2398
2399                         $query .= " FROM contacts, emails, emails_contacts ";
2400                         $where_auto = "emails_contacts.contact_id = contacts.id AND emails_contacts.email_id = emails.id AND emails.deleted=0 AND contacts.deleted=0";
2401                 } else {
2402                         $query = 'SELECT emails.*';
2403                         if($custom_join) {
2404                                 $query .= $custom_join['select'];
2405                         }
2406
2407             $query .= ' FROM emails ';
2408             $where_auto = "emails.deleted=0";
2409                 }
2410
2411                 if($custom_join){
2412                         $query .= $custom_join['join'];
2413                 }
2414
2415                 if($where != "")
2416                         $query .= "where $where AND ".$where_auto;
2417         else
2418                         $query .= "where ".$where_auto;
2419
2420         if($order_by != "")
2421                         $query .= " ORDER BY $order_by";
2422         else
2423                         $query .= " ORDER BY emails.name";
2424         return $query;
2425     }
2426
2427         function get_list_view_data() {
2428                 global $app_list_strings;
2429                 global $theme;
2430                 global $current_user;
2431                 global $timedate;
2432                 global $mod_strings;
2433
2434                 $email_fields = $this->get_list_view_array();
2435                 $this->retrieveEmailText();
2436                 $email_fields['FROM_ADDR'] = $this->from_addr_name;
2437                 $mod_strings = return_module_language($GLOBALS['current_language'], 'Emails'); // hard-coding for Home screen ListView
2438
2439                 if($this->status != 'replied') {
2440                         $email_fields['QUICK_REPLY'] = '<a  href="index.php?module=Emails&action=Compose&replyForward=true&reply=reply&record='.$this->id.'&inbound_email_id='.$this->id.'">'.$mod_strings['LNK_QUICK_REPLY'].'</a>';
2441                         $email_fields['STATUS'] = ($email_fields['REPLY_TO_STATUS'] == 1 ? $mod_strings['LBL_REPLIED'] : $email_fields['STATUS']);
2442                 } else {
2443                         $email_fields['QUICK_REPLY'] = $mod_strings['LBL_REPLIED'];
2444                 }
2445                 if(!empty($this->parent_type)) {
2446                         $email_fields['PARENT_MODULE'] = $this->parent_type;
2447                 } else {
2448                         switch($this->intent) {
2449                                 case 'support':
2450                                         $email_fields['CREATE_RELATED'] = '<a href="index.php?module=Cases&action=EditView&inbound_email_id='.$this->id.'" >' . SugarThemeRegistry::current()->getImage('CreateCases', 'border="0"', null, null, ".gif", $mod_strings['LBL_CREATE_CASES']).$mod_strings['LBL_CREATE_CASE'].'</a>';
2451                                 break;
2452
2453                                 case 'sales':
2454                                         $email_fields['CREATE_RELATED'] = '<a href="index.php?module=Leads&action=EditView&inbound_email_id='.$this->id.'" >'.SugarThemeRegistry::current()->getImage('CreateLeads', 'border="0"', null, null, ".gif", $mod_strings['LBL_CREATE_LEADS']).$mod_strings['LBL_CREATE_LEAD'].'</a>';
2455                                 break;
2456
2457                                 case 'contact':
2458                                         $email_fields['CREATE_RELATED'] = '<a href="index.php?module=Contacts&action=EditView&inbound_email_id='.$this->id.'" >'.SugarThemeRegistry::current()->getImage('CreateContacts', 'border="0"', null, null, ".gif", $mod_strings['LBL_CREATE_CONTACTS']).$mod_strings['LBL_CREATE_CONTACT'].'</a>';
2459                                 break;
2460
2461                                 case 'bug':
2462                                         $email_fields['CREATE_RELATED'] = '<a href="index.php?module=Bugs&action=EditView&inbound_email_id='.$this->id.'" >'.SugarThemeRegistry::current()->getImage('CreateBugs', 'border="0"', null, null, ".gif", $mod_strings['LBL_CREATE_BUGS']).$mod_strings['LBL_CREATE_BUG'].'</a>';
2463                                 break;
2464
2465                                 case 'task':
2466                                         $email_fields['CREATE_RELATED'] = '<a href="index.php?module=Tasks&action=EditView&inbound_email_id='.$this->id.'" >'.SugarThemeRegistry::current()->getImage('CreateTasks', 'border="0"', null, null, ".gif", $mod_strings['LBL_CREATE_TASKS']).$mod_strings['LBL_CREATE_TASK'].'</a>';
2467                                 break;
2468
2469                                 case 'bounce':
2470                                 break;
2471
2472                                 case 'pick':
2473                                 // break;
2474
2475                                 case 'info':
2476                                 //break;
2477
2478                                 default:
2479                                         $email_fields['CREATE_RELATED'] = $this->quickCreateForm();
2480                                 break;
2481                         }
2482
2483                 }
2484
2485                 //BUG 17098 - MFH changed $this->from_addr to $this->to_addrs
2486                 $email_fields['CONTACT_NAME']           = empty($this->contact_name) ? '</a>'.$this->trimLongTo($this->to_addrs).'<a>' : $this->contact_name;
2487                 $email_fields['CONTACT_ID']             = empty($this->contact_id) ? '' : $this->contact_id;
2488                 $email_fields['ATTACHMENT_IMAGE']       = $this->attachment_image;
2489                 $email_fields['LINK_ACTION']            = $this->link_action;
2490
2491         if(isset($this->type_name))
2492                 $email_fields['TYPE_NAME'] = $this->type_name;
2493
2494                 return $email_fields;
2495         }
2496
2497     function quickCreateForm() {
2498         global $mod_strings, $app_strings, $currentModule, $current_language;
2499
2500         // Coming from the home page via Dashlets
2501         if($currentModule != 'Email')
2502                 $mod_strings = return_module_language($current_language, 'Emails');
2503         return $mod_strings['LBL_QUICK_CREATE']."&nbsp;<a id='$this->id' onclick='return quick_create_overlib(\"{$this->id}\", \"".SugarThemeRegistry::current()->__toString()."\");' href=\"#\" >".SugarThemeRegistry::current()->getImage("advanced_search","border='0' align='absmiddle'", null,null,'.gif',$mod_strings['LBL_QUICK_CREATE'])."</a>";
2504     }
2505
2506     /**
2507      * Searches all imported emails and returns the result set as an array.
2508      *
2509      */
2510     function searchImportedEmails($sort = '', $direction='')
2511     {
2512         require_once('include/TimeDate.php');
2513                 global $timedate;
2514                 global $current_user;
2515                 global $beanList;
2516                 global $sugar_config;
2517                 global $app_strings;
2518
2519                 $emailSettings = $current_user->getPreference('emailSettings', 'Emails');
2520                 // cn: default to a low number until user specifies otherwise
2521                 if(empty($emailSettings['showNumInList']))
2522                         $pageSize = 20;
2523         else
2524             $pageSize = $emailSettings['showNumInList'];
2525
2526         if( isset($_REQUEST['start']) && isset($_REQUEST['limit']) )
2527                $page = ceil($_REQUEST['start'] / $_REQUEST['limit']) + 1;
2528             else
2529                $page = 1;
2530
2531              //Determine sort ordering
2532
2533              //Sort ordering parameters in the request do not coincide with actual column names
2534              //so we need to remap them.
2535              $hrSortLocal = array(
2536             'flagged' => 'type',
2537             'status'  => 'reply_to_status',
2538             'from'    => 'emails_text.from_addr',
2539             'subject' => 'name',
2540             'date'    => 'date_sent',
2541             'AssignedTo' => 'assigned_user_id',
2542             'flagged' => 'flagged'
2543         );
2544
2545              $sort = !empty($_REQUEST['sort']) ? $_REQUEST['sort'] : "";
2546          $direction = !empty($_REQUEST['dir']) ? $_REQUEST['dir'] : "";
2547
2548          $order = ( !empty($sort) && !empty($direction) ) ? " ORDER BY {$hrSortLocal[$sort]} {$direction}" : "";
2549
2550          //Get our main query.
2551                 $fullQuery = $this->_genereateSearchImportedEmailsQuery();
2552
2553                 //Perform a count query needed for pagination.
2554                 $countQuery = $this->create_list_count_query($fullQuery);
2555                 $count_rs = $this->db->query($countQuery, false, 'Error executing count query for imported emails search');
2556                 $count_row = $this->db->fetchByAssoc($count_rs);
2557                 $total_count = ($count_row != null) ? $count_row['c'] : 0;
2558
2559         $start = ($page - 1) * $pageSize;
2560
2561         //Execute the query
2562                 $rs = $this->db->limitQuery($fullQuery . $order, $start, $pageSize);
2563
2564                 $return = array();
2565
2566                 while($a = $this->db->fetchByAssoc($rs)) {
2567                         $temp = array();
2568                         $temp['flagged'] = (is_null($a['flagged']) || $a['flagged'] == '0') ? '' : 1;
2569                         $temp['status'] = (is_null($a['reply_to_status']) || $a['reply_to_status'] == '0') ? '' : 1;
2570                         $temp['subject'] = $a['name'];
2571                         $temp['date']   = $timedate->to_display_date_time($a['date_sent']);
2572                         $temp['uid'] = $a['id'];
2573                         $temp['ieId'] = $a['mailbox_id'];
2574                         $temp['site_url'] = $sugar_config['site_url'];
2575                         $temp['seen'] = ($a['status'] == 'unread') ? 0 : 1;
2576                         $temp['type'] = $a['type'];
2577                         $temp['mbox'] = 'sugar::Emails';
2578                         $temp['hasAttach'] =  $this->doesImportedEmailHaveAttachment($a['id']);
2579                         //To and from addresses may be stored in emails_text, if nothing is found, revert to
2580                         //regular email addresses.
2581                         $temp['to_addrs'] = preg_replace('/[\x00-\x08\x0B-\x1F]/', '', $a['to_addrs']);
2582                         $temp['from']   = preg_replace('/[\x00-\x08\x0B-\x1F]/', '', $a['from_addr']);
2583                         if( empty($temp['from']) || empty($temp['to_addrs']) )
2584                         {
2585                         //Retrieve email addresses seperatly.
2586                         $tmpEmail = new Email();
2587                         $tmpEmail->id = $a['id'];
2588                         $tmpEmail->retrieveEmailAddresses();
2589                         $temp['from'] = $tmpEmail->from_addr;
2590                         $temp['to_addrs'] = $tmpEmail->to_addrs;
2591                         }
2592
2593                         $return[] = $temp;
2594                 }
2595
2596                 $metadata = array();
2597                 $metadata['totalCount'] = $total_count;
2598                 $metadata['out'] = $return;
2599
2600                 return $metadata;
2601     }
2602
2603     /**
2604      * Determine if an imported email has an attachment by examining the relationship to notes.
2605      *
2606      * @param string $id
2607      * @return boolean
2608      */
2609     function doesImportedEmailHaveAttachment($id)
2610         {
2611            $hasAttachment = FALSE;
2612            $query = "SELECT id FROM notes where parent_id='$id' AND parent_type='Emails' AND file_mime_type is not null AND deleted=0";
2613            $rs = $this->db->limitQuery($query, 0, 1);
2614            $row = $this->db->fetchByAssoc($rs);
2615            if( !empty($row['id']) )
2616                $hasAttachment = TRUE;
2617
2618            return (int) $hasAttachment;
2619         }
2620
2621     /**
2622      * Generate the query used for searching imported emails.
2623      *
2624      * @return String Query to be executed.
2625      */
2626     function _genereateSearchImportedEmailsQuery()
2627     {
2628                 global $timedate;
2629
2630         $additionalWhereClause = $this->_generateSearchImportWhereClause();
2631
2632         $query = array();
2633         $fullQuery = "";
2634         $query['select'] = "emails.id , emails.mailbox_id, emails.name, emails.date_sent, emails.status, emails.type, emails.flagged, emails.reply_to_status,
2635                                       emails_text.from_addr, emails_text.to_addrs  FROM emails ";
2636
2637         $query['joins'] = " JOIN emails_text on emails.id = emails_text.email_id ";
2638
2639         //Handle from and to addr joins
2640         if( !empty($_REQUEST['from_addr']) )
2641         {
2642             $query['joins'] .= "INNER JOIN emails_email_addr_rel er_from ON er_from.email_id = emails.id AND er_from.deleted = 0 INNER JOIN email_addresses ea_from ON ea_from.id = er_from.email_address_id
2643                                 AND er_from.address_type='from' AND ea_from.email_address='" . strtolower($_REQUEST['from_addr']) . "'";
2644         }
2645
2646         if( !empty($_REQUEST['to_addrs'])  )
2647         {
2648             $query['joins'] .= "INNER JOIN emails_email_addr_rel er_to ON er_to.email_id = emails.id AND er_to.deleted = 0 INNER JOIN email_addresses ea_to ON ea_to.id = er_to.email_address_id
2649                                     AND er_to.address_type='to' AND ea_to.email_address='" . strtolower($_REQUEST['to_addrs']) . "'";
2650         }
2651
2652         $query['where'] = " WHERE (emails.type= 'inbound' OR emails.type='archived' OR emails.type='out') AND emails.deleted = 0 ";
2653                 if( !empty($additionalWhereClause) )
2654             $query['where'] .= "AND $additionalWhereClause";
2655
2656         //If we are explicitly looking for attachments.  Do not use a distinct query as the to_addr is defined
2657         //as a text which equals clob in oracle and the distinct query can not be executed correctly.
2658         $addDistinctKeyword = "";
2659         if( !empty($_REQUEST['attachmentsSearch']) &&  $_REQUEST['attachmentsSearch'] == 1) //1 indicates yes
2660             $query['where'] .= " AND EXISTS ( SELECT id FROM notes n WHERE n.parent_id = emails.id AND n.deleted = 0 AND n.filename is not null )";
2661         else if( !empty($_REQUEST['attachmentsSearch']) &&  $_REQUEST['attachmentsSearch'] == 2 )
2662              $query['where'] .= " AND NOT EXISTS ( SELECT id FROM notes n WHERE n.parent_id = emails.id AND n.deleted = 0 AND n.filename is not null )";
2663
2664         $fullQuery = "SELECT " . $query['select'] . " " . $query['joins'] . " " . $query['where'];
2665
2666         return $fullQuery;
2667     }
2668         /**
2669      * Generate the where clause for searching imported emails.
2670      *
2671      */
2672     function _generateSearchImportWhereClause()
2673     {
2674         global $timedate;
2675
2676         //The clear button was removed so if a user removes the asisgned user name, do not process the id.
2677         if( empty($_REQUEST['assigned_user_name']) && !empty($_REQUEST['assigned_user_id'])  )
2678             unset($_REQUEST['assigned_user_id']);
2679
2680         $availableSearchParam = array('name' => array('table_name' =>'emails'),
2681                                         'data_parent_id_search' => array('table_name' =>'emails','db_key' => 'parent_id','opp' => '='),
2682                                         'assigned_user_id' => array('table_name' => 'emails', 'opp' => '=') );
2683
2684                 $additionalWhereClause = array();
2685                 foreach ($availableSearchParam as $key => $properties)
2686                 {
2687                       if( !empty($_REQUEST[$key]) )
2688                       {
2689                           $db_key =  isset($properties['db_key']) ? $properties['db_key'] : $key;
2690                           $searchValue = $_REQUEST[$key];
2691
2692                           $opp = isset($properties['opp']) ? $properties['opp'] : 'like';
2693                           if($opp == 'like')
2694                               $searchValue = $searchValue . "%";
2695
2696                           $additionalWhereClause[] = "{$properties['table_name']}.$db_key $opp '$searchValue' ";
2697                       }
2698         }
2699
2700         $isDateFromSearchSet = !empty($_REQUEST['searchDateFrom']);
2701         $isdateToSearchSet = !empty($_REQUEST['searchDateTo']);
2702
2703         $bothDateRangesSet = $isDateFromSearchSet & $isdateToSearchSet;
2704
2705         //Hanlde date from and to seperately
2706         if($bothDateRangesSet)
2707         {
2708             $dbFormatDateFrom = $timedate->to_db_date($_REQUEST['searchDateFrom'], false);
2709             $dbFormatDateFrom = db_convert("'" . $dbFormatDateFrom . "'",'datetime');
2710
2711             $dbFormatDateTo = $timedate->to_db_date($_REQUEST['searchDateTo'], false);
2712             $dbFormatDateTo = db_convert("'" . $dbFormatDateTo . "'",'datetime');
2713
2714             $additionalWhereClause[] = "( emails.date_sent >= $dbFormatDateFrom AND
2715                                           emails.date_sent <= $dbFormatDateTo )";
2716         }
2717         elseif ($isdateToSearchSet)
2718         {
2719             $dbFormatDateTo = $timedate->to_db_date($_REQUEST['searchDateTo'], false);
2720             $dbFormatDateTo = db_convert("'" . $dbFormatDateTo . "'",'datetime');
2721             $additionalWhereClause[] = "emails.date_sent <= $dbFormatDateTo ";
2722         }
2723         elseif ($isDateFromSearchSet)
2724         {
2725             $dbFormatDateFrom = $timedate->to_db_date($_REQUEST['searchDateFrom'], false);
2726             $dbFormatDateFrom = db_convert("'" . $dbFormatDateFrom . "'",'datetime');
2727             $additionalWhereClause[] = "emails.date_sent >= $dbFormatDateFrom ";
2728         }
2729
2730         $additionalWhereClause = implode(" AND ", $additionalWhereClause);
2731
2732         return $additionalWhereClause;
2733     }
2734
2735
2736
2737         /**
2738          * takes a long TO: string of emails and returns the first appended by an
2739          * elipse
2740          */
2741         function trimLongTo($str) {
2742                 if(strpos($str, ',')) {
2743                         $exStr = explode(',', $str);
2744                         return $exStr[0].'...';
2745                 } elseif(strpos($str, ';')) {
2746                         $exStr = explode(';', $str);
2747                         return $exStr[0].'...';
2748                 } else {
2749                         return $str;
2750                 }
2751         }
2752
2753         function get_summary_text() {
2754                 return $this->name;
2755         }
2756
2757
2758
2759         function distributionForm($where) {
2760                 global $app_list_strings;
2761                 global $app_strings;
2762                 global $mod_strings;
2763                 global $theme;
2764                 global $current_user;
2765
2766                 $distribution   = get_select_options_with_id($app_list_strings['dom_email_distribution'], '');
2767                 $_SESSION['distribute_where'] = $where;
2768
2769
2770                 $out = '<form name="Distribute" id="Distribute">';
2771                 $out .= get_form_header($mod_strings['LBL_DIST_TITLE'], '', false);
2772                 $out .=<<<eoq
2773                 <script>
2774                         enableQS(true);
2775                 </script>
2776 eoq;
2777                 $out .= '
2778                 <table cellpadding="0" cellspacing="0" width="100%" border="0">
2779                         <tr>
2780                                 <td>
2781                                         <script type="text/javascript">
2782
2783
2784                                                 function checkDeps(form) {
2785                                                         return;
2786                                                 }
2787
2788                                                 function mySubmit() {
2789                                                         var assform = document.getElementById("Distribute");
2790                                                         var select = document.getElementById("userSelect");
2791                                                         var assign1 = assform.r1.checked;
2792                                                         var assign2 = assform.r2.checked;
2793                                                         var dist = assform.dm.value;
2794                                                         var assign = false;
2795                                                         var users = false;
2796                                                         var rules = false;
2797                                                         var warn1 = "'.$mod_strings['LBL_WARN_NO_USERS'].'";
2798                                                         var warn2 = "";
2799
2800                                                         if(assign1 || assign2) {
2801                                                                 assign = true;
2802
2803                                                         }
2804
2805                                                         for(i=0; i<select.options.length; i++) {
2806                                                                 if(select.options[i].selected == true) {
2807                                                                         users = true;
2808                                                                         warn1 = "";
2809                                                                 }
2810                                                         }
2811
2812                                                         if(dist != "") {
2813                                                                 rules = true;
2814                                                         } else {
2815                                                                 warn2 = "'.$mod_strings['LBL_WARN_NO_DIST'].'";
2816                                                         }
2817
2818                                                         if(assign && users && rules) {
2819
2820                                                                 if(document.getElementById("r1").checked) {
2821                                                                         var mu = document.getElementById("MassUpdate");
2822                                                                         var grabbed = "";
2823
2824                                                                         for(i=0; i<mu.elements.length; i++) {
2825                                                                                 if(mu.elements[i].type == "checkbox" && mu.elements[i].checked && mu.elements[i].name.value != "massall") {
2826                                                                                         if(grabbed != "") { grabbed += "::"; }
2827                                                                                         grabbed += mu.elements[i].value;
2828                                                                                 }
2829                                                                         }
2830                                                                         var formgrab = document.getElementById("grabbed");
2831                                                                         formgrab.value = grabbed;
2832                                                                 }
2833                                                                 assform.submit();
2834                                                         } else {
2835                                                                 alert("'.$mod_strings['LBL_ASSIGN_WARN'].'" + "\n" + warn1 + "\n" + warn2);
2836                                                         }
2837                                                 }
2838
2839                                                 function submitDelete() {
2840                                                         if(document.getElementById("r1").checked) {
2841                                                                 var mu = document.getElementById("MassUpdate");
2842                                                                 var grabbed = "";
2843
2844                                                                 for(i=0; i<mu.elements.length; i++) {
2845                                                                         if(mu.elements[i].type == "checkbox" && mu.elements[i].checked && mu.elements[i].name != "massall") {
2846                                                                                 if(grabbed != "") { grabbed += "::"; }
2847                                                                                 grabbed += mu.elements[i].value;
2848                                                                         }
2849                                                                 }
2850                                                                 var formgrab = document.getElementById("grabbed");
2851                                                                 formgrab.value = grabbed;
2852                                                         }
2853                                                         if(grabbed == "") {
2854                                                                 alert("'.$mod_strings['LBL_MASS_DELETE_ERROR'].'");
2855                                                         } else {
2856                                                                 document.getElementById("Distribute").submit();
2857                                                         }
2858                                                 }
2859
2860                                         </script>
2861                                                 <input type="hidden" name="module" value="Emails">
2862                                                 <input type="hidden" name="action" id="action">
2863                                                 <input type="hidden" name="grabbed" id="grabbed">
2864
2865                                         <table cellpadding="1" cellspacing="0" width="100%" border="0" class="edit view">
2866                                                 <tr height="20">
2867                                                         <td scope="col" scope="row" NOWRAP align="center">
2868                                                                 &nbsp;'.$mod_strings['LBL_ASSIGN_SELECTED_RESULTS_TO'].'&nbsp;';
2869                                         $out .= $this->userSelectTable();
2870                                         $out .= '</td>
2871                                                         <td scope="col" scope="row" NOWRAP align="left">
2872                                                                 &nbsp;'.$mod_strings['LBL_USING_RULES'].'&nbsp;
2873                                                                 <select name="distribute_method" id="dm" onChange="checkDeps(this.form);">'.$distribution.'</select>
2874                                                         </td>';
2875
2876
2877                                         $out .= '</td>
2878                                                         </tr>';
2879
2880
2881                                         $out .= '<tr>
2882                                                                 <td scope="col" width="50%" scope="row" NOWRAP align="right" colspan="2">
2883                                                                 <input title="'.$mod_strings['LBL_BUTTON_DISTRIBUTE_TITLE'].'"
2884                                                                         id="dist_button"
2885                                                                         class="button" onClick="AjaxObject.detailView.handleAssignmentDialogAssignAction();"
2886                                                                         type="button" name="button"
2887                                                                         value="  '.$mod_strings['LBL_BUTTON_DISTRIBUTE'].'  ">';
2888                                         $out .= '</tr>
2889                                         </table>
2890                                 </td>
2891                         </tr>
2892                 </table>
2893                 </form>';
2894         return $out;
2895         }
2896
2897         function userSelectTable() {
2898                 global $theme;
2899                 global $mod_strings;
2900
2901                 $colspan = 1;
2902                 $setTeamUserFunction = '';
2903
2904
2905                 // get users
2906                 $r = $this->db->query("SELECT users.id, users.user_name, users.first_name, users.last_name FROM users WHERE deleted=0 AND status = 'Active' AND is_group=0 ORDER BY users.last_name, users.first_name");
2907
2908                 $userTable = '<table cellpadding="0" cellspacing="0" border="0">';
2909                 $userTable .= '<tr><td colspan="2"><b>'.$mod_strings['LBL_USER_SELECT'].'</b></td></tr>';
2910                 $userTable .= '<tr><td><input type="checkbox" style="border:0px solid #000000" onClick="toggleAll(this); setCheckMark(); checkDeps(this.form);"></td> <td>'.$mod_strings['LBL_TOGGLE_ALL'].'</td></tr>';
2911                 $userTable .= '<tr><td colspan="2"><select style="visibility:hidden;" name="users[]" id="userSelect" multiple size="12">';
2912
2913                 while($a = $this->db->fetchByAssoc($r)) {
2914                         $userTable .= '<option value="'.$a['id'].'" id="'.$a['id'].'">'.$a['first_name'].' '.$a['last_name'].'</option>';
2915                 }
2916                 $userTable .= '</select></td></tr>';
2917                 $userTable .= '</table>';
2918
2919                 $out  = '<script type="text/javascript">';
2920                 $out .= $setTeamUserFunction;
2921                 $out .= '
2922                                         function setCheckMark() {
2923                                                 var select = document.getElementById("userSelect");
2924
2925                                                 for(i=0 ; i<select.options.length; i++) {
2926                                                         if(select.options[i].selected == true) {
2927                                                                 document.getElementById("checkMark").style.display="";
2928                                                                 return;
2929                                                         }
2930                                                 }
2931
2932                                                 document.getElementById("checkMark").style.display="none";
2933                                                 return;
2934                                         }
2935
2936                                         function showUserSelect() {
2937                                                 var targetTable = document.getElementById("user_select");
2938                                                 targetTable.style.visibility="visible";
2939                                                 var userSelectTable = document.getElementById("userSelect");
2940                                                 userSelectTable.style.visibility="visible";
2941                                                 return;
2942                                         }
2943                                         function hideUserSelect() {
2944                                                 var targetTable = document.getElementById("user_select");
2945                                                 targetTable.style.visibility="hidden";
2946                                                 var userSelectTable = document.getElementById("userSelect");
2947                                                 userSelectTable.style.visibility="hidden";
2948                                                 return;
2949                                         }
2950                                         function toggleAll(toggle) {
2951                                                 if(toggle.checked) {
2952                                                         var stat = true;
2953                                                 } else {
2954                                                         var stat = false;
2955                                                 }
2956                                                 var form = document.getElementById("userSelect");
2957                                                 for(i=0; i<form.options.length; i++) {
2958                                                         form.options[i].selected = stat;
2959                                                 }
2960                                         }
2961
2962
2963                                 </script>
2964                         <span id="showUsersDiv" style="position:relative;">
2965                                 <a href="#" id="showUsers" onClick="javascript:showUserSelect();">
2966                                         '.SugarThemeRegistry::current()->getImage('Users', '', null, null, ".gif", $mod_strings['LBL_USERS']).'</a>&nbsp;
2967                                 <a href="#" id="showUsers" onClick="javascript:showUserSelect();">
2968                                         <span style="display:none;" id="checkMark">'.SugarThemeRegistry::current()->getImage('check_inline', 'border="0"', null, null, ".gif", $mod_strings['LBL_CHECK_INLINE']).'</span>
2969                                 </a>
2970
2971
2972                                 <div id="user_select" style="width:200px;position:absolute;left:2;top:2;visibility:hidden;z-index:1000;">
2973                                 <table cellpadding="0" cellspacing="0" border="0" class="list view">
2974                                         <tr height="20">
2975                                                 <td  colspan="'.$colspan.'" id="hiddenhead" onClick="hideUserSelect();" onMouseOver="this.style.border = \'outset red 1px\';" onMouseOut="this.style.border = \'inset white 0px\';this.style.borderBottom = \'inset red 1px\';">
2976                                                         <a href="#" onClick="javascript:hideUserSelect();">'.SugarThemeRegistry::current()->getImage('close', 'border="0"', null, null, ".gif", $mod_strings['LBL_CLOSE']).'</a>
2977                                                         '.$mod_strings['LBL_USER_SELECT'].'
2978                                                 </td>
2979                                         </tr>
2980                                         <tr>';
2981 //<td valign="middle" height="30"  colspan="'.$colspan.'" id="hiddenhead" onClick="hideUserSelect();" onMouseOver="this.style.border = \'outset red 1px\';" onMouseOut="this.style.border = \'inset white 0px\';this.style.borderBottom = \'inset red 1px\';">
2982                 $out .= '               <td style="padding:5px" class="oddListRowS1" bgcolor="#fdfdfd" valign="top" align="left" style="left:0;top:0;">
2983                                                         '.$userTable.'
2984                                                 </td>
2985                                         </tr>
2986                                 </table></div>
2987                         </span>';
2988                 return $out;
2989         }
2990
2991         function checkInbox($type) {
2992                 global $theme;
2993                 global $mod_strings;
2994                 $out = '<div><input     title="'.$mod_strings['LBL_BUTTON_CHECK_TITLE'].'"
2995                                                 class="button"
2996                                                 type="button" name="button"
2997                                                 onClick="window.location=\'index.php?module=Emails&action=Check&type='.$type.'\';"
2998                                                 style="margin-bottom:2px"
2999                                                 value="  '.$mod_strings['LBL_BUTTON_CHECK'].'  "></div>';
3000                 return $out;
3001         }
3002
3003         /**
3004          * Guesses Primary Parent id from From: email address.  Cascades guesses from Accounts to Contacts to Leads to
3005          * Users.  This will not affect the many-to-many relationships already constructed as this is, at best,
3006          * informational linking.
3007          */
3008         function fillPrimaryParentFields() {
3009                 if(empty($this->from_addr))
3010                         return;
3011
3012                 $GLOBALS['log']->debug("*** Email trying to guess Primary Parent from address [ {$this->from_addr} ]");
3013
3014                 $tables = array('accounts');
3015                 $ret = array();
3016                 // loop through types to get hits
3017                 foreach($tables as $table) {
3018                         $q = "SELECT name, id FROM {$table} WHERE email1 = '{$this->from_addr}' OR email2 = '{$this->from_addr}' AND deleted = 0";
3019                         $r = $this->db->query($q);
3020                         while($a = $this->db->fetchByAssoc($r)) {
3021                                 if(!empty($a['name']) && !empty($a['id'])) {
3022                                         $this->parent_type      = ucwords($table);
3023                                         $this->parent_id        = $a['id'];
3024                                         $this->parent_name      = $a['name'];
3025                                         return;
3026                                 }
3027                         }
3028                 }
3029         }
3030
3031         /**
3032          * Convert reference to inline image (stored as Note) to URL link
3033          * Enter description here ...
3034          * @param string $note ID of the note
3035          * @param string $ext type of the note
3036          */
3037         public function cid2Link($noteId, $noteType)
3038         {
3039             if(empty($this->description_html)) return;
3040                         list($type, $subtype) = explode('/', $noteType);
3041                         if(strtolower($type) != 'image') {
3042                             return;
3043                         }
3044             $upload = new UploadFile();
3045                         $this->description_html = preg_replace("#class=\"image\" src=\"cid:$noteId\.(.+?)\"#", "class=\"image\" src=\"{$this->imagePrefix}{$noteId}.\\1\"", $this->description_html);
3046                 // ensure the image is in the cache
3047                         $imgfilename = sugar_cached("images/")."$noteId.".strtolower($subtype);
3048                         $src = "upload://$noteId";
3049                         if(!file_exists($imgfilename) && file_exists($src)) {
3050                                 copy($src, $imgfilename);
3051                         }
3052         }
3053
3054         /**
3055          * Convert all cid: links in this email into URLs
3056          */
3057         function cids2Links()
3058         {
3059             if(empty($this->description_html)) return;
3060             $q = "SELECT id, file_mime_type FROM notes WHERE parent_id = '{$this->id}' AND deleted = 0";
3061                 $r = $this->db->query($q);
3062             while($a = $this->db->fetchByAssoc($r)) {
3063                 $this->cid2Link($a['id'], $a['file_mime_type']);
3064             }
3065         }
3066 } // end class def