Ketan Panchal
Ketan Panchal

Reputation: 148

Need to display Subject (Mail subject) - Vtiger CRM

I need to display Mail subject in Related tab Grid of Lead module

enter image description here

I have checked getRelationQuery() function in that I got a subject, but while on the EmailRelatedlist.tpl file, the subject data is not displayed.

How we can display the Subject on the Related tab?

Upvotes: 0

Views: 113

Answers (1)

rajkiran bhuva
rajkiran bhuva

Reputation: 136

can you please go to below file and change below code modules\Emails\Emails.php

var $list_fields = Array(
    'Subject' => Array('activity' => 'subject'),
    'Related to' => Array('seactivityrel' => 'parent_id'),
    'Date Sent' => Array('activity' => 'date_start'),
    'Time Sent' => Array('activity' => 'time_start'),
    'Assigned To' => Array('crmentity', 'smownerid'),
    'Access Count' => Array('email_track', 'access_count')
);
var $list_fields_name = Array(
    'Subject' => 'subject',
    'Related to' => 'parent_id',
    'Date Sent' => 'date_start',
    'Time Sent' => 'time_start',
    'Assigned To' => 'assigned_user_id',
    'Access Count' => 'access_count'
);

Upvotes: 1

Related Questions