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