[Vtigercrm-commits] [Vtiger development] #8000: Workflow Task from email issue

Vtiger development vtiger-tickets at trac.vtiger.com
Tue Apr 22 10:07:13 GMT 2014


#8000: Workflow Task from email issue
------------------------+-------------------------
 Reporter:  uma         |       Owner:  developer
     Type:  defect      |      Status:  new
 Priority:  unassigned  |   Milestone:  Unassigned
Component:  vtigercrm   |     Version:  6.0.0
 Severity:  Medium      |  Resolution:
 Keywords:              |
------------------------+-------------------------

Comment (by rishab):

 In VTEmailTask.inc under [/vtiger_root/modules/com_vtiger_workflow/tasks/]


 {{{
 $fromEmailDetails = $et->render($entityCache, $entityId);
 }}}
 after fromDetails assignment on line 119 add the following code.
 {{{
 if(strpos($this->fromEmail, '<') && strpos($this->fromEmail, '>'))
 {
 list($fromName, $fromEmail) = explode('<', $fromEmailDetails);
 list($fromEmail, $rest) = explode('>', $fromEmail);
 }

 else {
 $fromEmail = $fromEmailDetails;
      }
 }}}

--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8000#comment:1>
Vtiger development <http://trac.vtiger.com/>
Vtiger CRM


More information about the vtigercrm-commits mailing list